made some updates to xmonad, added volume control (for desktop at least)

This commit is contained in:
Inkletblot 2021-03-01 16:30:26 +10:30
parent 567e8158a7
commit 3a0f04fe00

View File

@ -225,6 +225,18 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
] ]
++ ++
--
-- music controlls as I figure them out
--
[
-- decrease volume with mod+f11
((modm, xK_F11), spawn "amixer -c 3 set Master 5%-")
-- increase volume with mod+f12
,((modm, xK_F12), spawn "amixer -c 3 set Master 5%+")
]
++
-- --
-- mod-[1..9], Switch to workspace N -- mod-[1..9], Switch to workspace N
-- mod-shift-[1..9], Move client to workspace N -- mod-shift-[1..9], Move client to workspace N