hypr: rewire owlry launcher binds for 2.2 profiles

Fix the launcher bind, which used pre-2.2 syntax (owlry -p
app,cmd,system,ssh) where -p is now --prompt, so the whole string was
passed as prompt text. Use bare 'owlry' for Super+Space and add Super+D
for the new dev profile (owlry --profile dev).
This commit is contained in:
2026-06-01 22:10:13 +02:00
parent 345ee2b608
commit 9c58cbdcf8
@@ -7,7 +7,8 @@ local term_tmux_append = "uwsm app -- kitty -e tmux a"
local editor = "uwsm app -- kitty -e nvim"
local alteditor = "uwsm app -- zeditor"
local filemanager = "uwsm app -- nautilus"
local launcher = "uwsm app -- owlry -p app,cmd,system,ssh"
local launcher = "uwsm app -- owlry"
local devlauncher = "uwsm app -- owlry --profile dev"
local clipman = "uwsm app -- owlry -m clipboard"
local browser = "uwsm app -- firefox"
local browserprv = "uwsm app -- firefox --private-window"
@@ -33,6 +34,7 @@ hl.bind(mainMod .. " + SHIFT + W", hl.dsp.exec_cmd(browserprv), { descript
hl.bind(mainMod .. " + CTRL + W", hl.dsp.exec_cmd(altbrowser), { description = "Chromium" })
hl.bind(mainMod .. " + ALT + W", hl.dsp.exec_cmd(browsernewinst),{ description = "Firefox (new instance)" })
hl.bind(mainMod .. " + Space", hl.dsp.exec_cmd(launcher), { description = "App launcher" })
hl.bind(mainMod .. " + D", hl.dsp.exec_cmd(devlauncher), { description = "App launcher (dev)" })
-- Secondary launchers
hl.bind(mainMod .. " + SHIFT + E", hl.dsp.exec_cmd(editor), { description = "Neovim" })