diff options
author | Freya Murphy <freya@freyacat.org> | 2025-09-21 12:11:47 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-09-23 11:51:08 -0400 |
commit | b14bf595f0fd232f8db262b1a2929a7958afe844 (patch) | |
tree | d577dc39f4018ecbebf888776c92b2aebb53e088 /pkgs/astal/src/shell.lua | |
parent | update commits (diff) | |
download | dotfiles-nix-b14bf595f0fd232f8db262b1a2929a7958afe844.tar.gz dotfiles-nix-b14bf595f0fd232f8db262b1a2929a7958afe844.tar.bz2 dotfiles-nix-b14bf595f0fd232f8db262b1a2929a7958afe844.zip |
astal: refactor launcher
Diffstat (limited to 'pkgs/astal/src/shell.lua')
-rw-r--r-- | pkgs/astal/src/shell.lua | 12 |
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, }) |