change somethign for fullscreen
This commit is contained in:
parent
89901c994d
commit
1b5a0263af
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ import XMonad.Hooks.DynamicLog -- supposed to be for xmobar
|
||||||
import XMonad.Hooks.EwmhDesktops
|
import XMonad.Hooks.EwmhDesktops
|
||||||
import XMonad.Util.SpawnOnce -- for startup items
|
import XMonad.Util.SpawnOnce -- for startup items
|
||||||
import XMonad.Util.Run -- for xmobar startup
|
import XMonad.Util.Run -- for xmobar startup
|
||||||
|
import XMonad.Layout.NoBorders -- fullscreen
|
||||||
import XMonad.Util.Hacks as Hacks -- tray
|
import XMonad.Util.Hacks as Hacks -- tray
|
||||||
import Graphics.X11.ExtraTypes.XF86 -- for keys
|
import Graphics.X11.ExtraTypes.XF86 -- for keys
|
||||||
import XMonad.Util.Loggers -- smth
|
import XMonad.Util.Loggers -- smth
|
||||||
|
@ -195,7 +196,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 = tiled ||| Mirror tiled ||| Full
|
myLayout = tiled ||| Mirror tiled ||| noBorders 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