testing testing frrr

This commit is contained in:
2026-07-10 21:51:13 +01:00
parent fe1df78f2a
commit 25fcd16d4d

View File

@@ -56,7 +56,7 @@ local globalAppBinds = {
if hl.get_windows({ class = "otter" })[1] ~= nil then if hl.get_windows({ class = "otter" })[1] ~= nil then
hl.dispatch(hl.dsp.focus({ window = "class:otter" })) hl.dispatch(hl.dsp.focus({ window = "class:otter" }))
else else
hl.exec_cmd("kitty --class otter --title otter-launcher -e sh -c 'sleep 0.05 && otter-launcher'") hl.exec_cmd("kitty --class otter --title otter-launcher -e sh -c 'sleep 0.05 && /run/hypr-runtime-env/bin/otter-launcher'")
end end
end, end,
}, },
@@ -179,11 +179,7 @@ for _, bind in ipairs(globalAppBinds) do
if type(bind.dispatch) ~= "string" then if type(bind.dispatch) ~= "string" then
command = bind.dispatch command = bind.dispatch
else else
local prepend = "" command = hl.dsp.exec_cmd("/run/hypr-runtime-env/bin/" .. bind.dispatch)
if is_nixos() then
prepend = "/run/hypr-runtime-env/bin/"
end
command = hl.dsp.exec_cmd(prepend .. bind.dispatch)
end end
local opts = {} local opts = {}
if bind.opts then if bind.opts then