made some updates to xmonad, added volume control (for desktop at least)
This commit is contained in:
parent
567e8158a7
commit
3a0f04fe00
@ -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-shift-[1..9], Move client to workspace N
|
||||
|
||||
Loading…
Reference in New Issue
Block a user