From b14bf595f0fd232f8db262b1a2929a7958afe844 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sun, 21 Sep 2025 12:11:47 -0400 Subject: astal: refactor launcher --- pkgs/astal/src/shell.lua | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'pkgs/astal/src/shell.lua') 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, }) -- cgit v1.2.3-freya