aboutsummaryrefslogtreecommitdiff
path: root/hypr/hyprland.lua
diff options
context:
space:
mode:
authorGibheer <gibheer+git@zero-knowledge.org>2026-05-16 22:57:58 +0200
committerGibheer <gibheer+git@zero-knowledge.org>2026-05-16 22:57:58 +0200
commit5038b56859eb3375a81207ff0a1ac7edb9a0ca0d (patch)
tree352813f609deefb4073f7b8866677c22d465390c /hypr/hyprland.lua
parent4ff72b67b78c1221ac901549c55a4299cb814496 (diff)
add missing keybindings
Diffstat (limited to 'hypr/hyprland.lua')
-rw-r--r--hypr/hyprland.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/hypr/hyprland.lua b/hypr/hyprland.lua
index 85678e8..786f20f 100644
--- a/hypr/hyprland.lua
+++ b/hypr/hyprland.lua
@@ -65,6 +65,11 @@ hl.bind(mainMod .. " + Return", hl.dsp.exec_cmd("kitty"))
hl.bind(mainMod .. " + X", hl.dsp.exec_cmd("wofi"))
hl.bind(mainMod .. " + M", hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch 'hl.dsp.exit()'"))
+-- monitor bindings
+hl.bind("CTRL + ALT + S", hl.dsp.exec_cmd("~/bin/monitor 0"))
+hl.bind("CTRL + ALT + D", hl.dsp.exec_cmd("~/bin/monitor 1"))
+hl.bind("CTRL + ALT + L", hl.dsp.exec_cmd("hyprlock"))
+
-- hl bindings
hl.bind(mainMod .. " + C", hl.dsp.window.close())
hl.bind(mainMod .. " + F", hl.dsp.window.fullscreen({mode="fullscreen", action="toggle"})