vanadium/xmonad: use shift to control brightness increment

This commit is contained in:
Primrose 2025-07-19 20:04:34 +02:00
parent ead40c844d
commit d91e3dc899
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -144,10 +144,10 @@ main = xmonad
`additionalKeys` `additionalKeys`
[ [
-- Display -- Display
((0 , xF86XK_MonBrightnessDown), spawn "light -U 5") ((0, xF86XK_MonBrightnessDown), spawn "light -U 5")
, ((0 , xF86XK_MonBrightnessUp ), spawn "light -A 5") , ((0, xF86XK_MonBrightnessUp ), spawn "light -A 5")
, ((altMask, xF86XK_MonBrightnessDown), spawn "light -U 1") , ((shiftMask, xF86XK_MonBrightnessDown), spawn "light -U 1")
, ((altMask, xF86XK_MonBrightnessUp ), spawn "light -A 1") , ((shiftMask, xF86XK_MonBrightnessUp ), spawn "light -A 1")
-- Volume adjustments -- Volume adjustments
-- Don't overload the mute button -- Don't overload the mute button