Compare commits

...
2 Commits
Author SHA1 Message Date
AramJonghu 1eb2d5ba0a no more need for zigbright 2026-06-16 00:00:14 +02:00
AramJonghu 266cc43bda zshell globalshortcuts for brightness works 2026-06-15 23:59:54 +02:00
2 changed files with 2 additions and 4 deletions
+2 -3
View File
@@ -52,9 +52,6 @@ hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = tru
hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true })
hl.bind("XF86WebCam", hl.dsp.exec_cmd(""), { locked = true, repeating = true })
-- Broken on Artix -> Seems to not expose XF86 keys when not on DE (KDE Plasma worked)
-- hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd("brightnessctl set +5%"), { locked = true, repeating = true })
-- hl.bind("XF86MonBrightnessDown", hl.dsp.exec_cmd("brightnessctl set -5%"), { locked = true, repeating = true })
hl.bind("PRINT", hl.dsp.global("zshell:screenshotFreeze"))
hl.bind("SUPER + R", hl.dsp.global("zshell:toggle-launcher"))
@@ -62,3 +59,5 @@ hl.bind("SUPER + A", hl.dsp.global("zshell:toggle-nc"))
hl.bind("SUPER + V", hl.dsp.global("zshell:toggle-drawing"))
hl.bind("SUPER + F1", hl.dsp.global("zshell:lock"))
hl.bind("SUPER + F2", hl.dsp.global("zshell:toggle-settings"))
hl.bind("XF86MonBrightnessDown", hl.dsp.global("zshell:brightnessDown"))
hl.bind("XF86MonBrightnessUp", hl.dsp.global("zshell:brightnessUp"))
-1
View File
@@ -6,5 +6,4 @@ hl.on("hyprland.start", function()
hl.exec_cmd("wl-paste --type image --watch cliphist store")
hl.exec_cmd("hyprsunset -i")
hl.exec_cmd("nextcloud --background")
hl.exec_cmd("zigbright listen")
end)