From e61cf08607f1acc3ac12ba04190f6cb510326c15 Mon Sep 17 00:00:00 2001 From: Maaz Khokhar Date: Mon, 6 Jul 2026 23:58:27 -0500 Subject: [PATCH] made hyprland escape be meta shift escape because i keep accidently leaving --- home/river/config/hypr/keybinds.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/home/river/config/hypr/keybinds.lua b/home/river/config/hypr/keybinds.lua index 86d1cd3..4494a97 100644 --- a/home/river/config/hypr/keybinds.lua +++ b/home/river/config/hypr/keybinds.lua @@ -10,7 +10,7 @@ hl.bind(mainMod .. " + B", hl.dsp.exec_cmd(config.browser)) hl.bind(mainMod .. " + Q", hl.dsp.window.close()) hl.bind( - mainMod .. " + Escape", + mainMod .. " + SHIFT + Escape", hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch 'hl.dsp.exit()'") ) hl.bind(mainMod .. " + V", hl.dsp.window.float({ action = "toggle" })) @@ -66,4 +66,3 @@ hl.bind( ) hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%+"), { locked = true, repeating = true }) hl.bind("XF86MonBrightnessDown", hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%-"), { locked = true, repeating = true }) -