Fullscreen probably
This commit is contained in:
parent
43c72b7432
commit
f01fc540a8
1 changed files with 4 additions and 8 deletions
|
@ -1,11 +1,4 @@
|
|||
--
|
||||
-- xmonad example config file.
|
||||
--
|
||||
-- A template showing all available configuration hooks,
|
||||
-- and how to override the defaults in your own xmonad.hs conf file.
|
||||
--
|
||||
-- Normally, you'd only override those defaults you care about.
|
||||
--
|
||||
-- Sako's Horrible Configuration
|
||||
|
||||
-- Main
|
||||
import XMonad
|
||||
|
@ -140,6 +133,9 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
|
|||
, ((0, xF86XK_AudioLowerVolume), spawn "pactl set-sink-volume @DEFAULT_SINK@ -10%")
|
||||
, ((0, xF86XK_AudioRaiseVolume), spawn "pactl set-sink-volume @DEFAULT_SINK@ +10%")
|
||||
|
||||
-- Fullscreen
|
||||
, ((modMask, xK_f), sendMessage $ JumpToLayout "Full" )
|
||||
|
||||
-- Quit xmonad
|
||||
, ((modm .|. shiftMask, xK_q ), io exitSuccess)
|
||||
|
||||
|
|
Loading…
Reference in a new issue