summaryrefslogtreecommitdiff
path: root/pkgs/astal/src/shell.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkgs/astal/src/shell.lua12
1 files changed, 1 insertions, 11 deletions
diff --git a/pkgs/astal/src/shell.lua b/pkgs/astal/src/shell.lua
index 417f754..c370349 100644
--- a/pkgs/astal/src/shell.lua
+++ b/pkgs/astal/src/shell.lua
@@ -4,11 +4,9 @@ local lib = require("lib")
local Bar = require("widget.bar")
local Corners = require("widget.corners")
local Deck = require("widget.deck")
-local Launcher = require("widget.launcher")
-
-local launcher_visible
App:start({
+ instance_name = "shell",
css = lib.src("main.css"),
main = function()
for _, mon in pairs(App.monitors) do
@@ -16,13 +14,5 @@ App:start({
Corners(mon)
Deck(mon)
end
- launcher_visible = Launcher()
- end,
- request_handler = function(req, res)
- if req == "launcher" then
- launcher_visible:set(true)
- return res("opening launcher")
- end
- res("unknown command")
end,
})