summaryrefslogtreecommitdiff
path: root/pkgs/astal/src/shell.lua
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/astal/src/shell.lua')
-rw-r--r--pkgs/astal/src/shell.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/astal/src/shell.lua b/pkgs/astal/src/shell.lua
new file mode 100644
index 0000000..c370349
--- /dev/null
+++ b/pkgs/astal/src/shell.lua
@@ -0,0 +1,18 @@
+local App = require("astal.gtk3.app")
+local lib = require("lib")
+
+local Bar = require("widget.bar")
+local Corners = require("widget.corners")
+local Deck = require("widget.deck")
+
+App:start({
+ instance_name = "shell",
+ css = lib.src("main.css"),
+ main = function()
+ for _, mon in pairs(App.monitors) do
+ Bar(mon)
+ Corners(mon)
+ Deck(mon)
+ end
+ end,
+})