parent
008c4e2d9f
commit
e89452e1f8
1 changed files with 2 additions and 2 deletions
|
@ -143,7 +143,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
|
||||||
, ((0, xF86XK_AudioRaiseVolume), spawn "pactl set-sink-volume @DEFAULT_SINK@ +10%")
|
, ((0, xF86XK_AudioRaiseVolume), spawn "pactl set-sink-volume @DEFAULT_SINK@ +10%")
|
||||||
|
|
||||||
-- Fullscreen
|
-- Fullscreen
|
||||||
, ((modm, xK_f), sendMessage (Toggle "Full"))
|
, ((modm, xK_f), sendMessage Toggle Full)
|
||||||
|
|
||||||
-- Quit xmonad
|
-- Quit xmonad
|
||||||
, ((modm .|. shiftMask, xK_q ), io exitSuccess)
|
, ((modm .|. shiftMask, xK_q ), io exitSuccess)
|
||||||
|
@ -204,7 +204,7 @@ myMouseBindings (XConfig {XMonad.modMask = modm}) = M.fromList
|
||||||
-- The available layouts. Note that each layout is separated by |||,
|
-- The available layouts. Note that each layout is separated by |||,
|
||||||
-- which denotes layout choice.
|
-- which denotes layout choice.
|
||||||
--
|
--
|
||||||
myLayout = toggleLayouts (noBorders Full) (tiled ||| Mirror tiled)
|
myLayout = tiled ||| Mirror tiled ||| Full
|
||||||
where
|
where
|
||||||
-- default tiling algorithm partitions the screen into two panes
|
-- default tiling algorithm partitions the screen into two panes
|
||||||
tiled = Tall nmaster delta ratio
|
tiled = Tall nmaster delta ratio
|
||||||
|
|
Loading…
Reference in a new issue