fix(hypr): unify special workspace, drop 'magic' name

The Lua conversion had introduced a named 'magic' special workspace on the
SUPER+S keybinding while KeePassXC and the terminal still targeted the default
'special' workspace, splitting them into two separate scratchpads and making
KeePassXC unreachable. Route everything through the single default special
workspace to match the original .conf behavior.
This commit is contained in:
Jeena 2026-08-27 19:43:36 +09:00
parent 997f112baa
commit f9553329ef
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ hl.on("hyprland.start", function()
hl.exec_cmd("[workspace 1 silent] " .. P.browser)
hl.exec_cmd("[workspace 2 silent] thunderbird")
hl.exec_cmd("[workspace 2 silent] element-desktop")
hl.exec_cmd("[workspace special:magic silent] " .. P.terminal)
hl.exec_cmd("[workspace special silent] " .. P.terminal)
hl.exec_cmd("keepassxc")
hl.exec_cmd('chromium --profile-directory="Default"')
end)