From 25fcd16d4d4836e063e2198102ddfba38de43100 Mon Sep 17 00:00:00 2001 From: voidarc Date: Fri, 10 Jul 2026 21:51:13 +0100 Subject: [PATCH] testing testing frrr --- modules/binds.lua | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/modules/binds.lua b/modules/binds.lua index 20d3f4b..eee976a 100644 --- a/modules/binds.lua +++ b/modules/binds.lua @@ -56,7 +56,7 @@ local globalAppBinds = { if hl.get_windows({ class = "otter" })[1] ~= nil then hl.dispatch(hl.dsp.focus({ window = "class:otter" })) 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, }, @@ -179,11 +179,7 @@ for _, bind in ipairs(globalAppBinds) do if type(bind.dispatch) ~= "string" then command = bind.dispatch else - local prepend = "" - if is_nixos() then - prepend = "/run/hypr-runtime-env/bin/" - end - command = hl.dsp.exec_cmd(prepend .. bind.dispatch) + command = hl.dsp.exec_cmd("/run/hypr-runtime-env/bin/" .. bind.dispatch) end local opts = {} if bind.opts then