mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
vanadium/xmonad: use shift to control brightness increment
This commit is contained in:
parent
ead40c844d
commit
d91e3dc899
1 changed files with 4 additions and 4 deletions
|
|
@ -144,10 +144,10 @@ main = xmonad
|
|||
`additionalKeys`
|
||||
[
|
||||
-- Display
|
||||
((0 , xF86XK_MonBrightnessDown), spawn "light -U 5")
|
||||
, ((0 , xF86XK_MonBrightnessUp ), spawn "light -A 5")
|
||||
, ((altMask, xF86XK_MonBrightnessDown), spawn "light -U 1")
|
||||
, ((altMask, xF86XK_MonBrightnessUp ), spawn "light -A 1")
|
||||
((0, xF86XK_MonBrightnessDown), spawn "light -U 5")
|
||||
, ((0, xF86XK_MonBrightnessUp ), spawn "light -A 5")
|
||||
, ((shiftMask, xF86XK_MonBrightnessDown), spawn "light -U 1")
|
||||
, ((shiftMask, xF86XK_MonBrightnessUp ), spawn "light -A 1")
|
||||
|
||||
-- Volume adjustments
|
||||
-- Don't overload the mute button
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue