xmonad.hs: spaces -> tabs, as it should be.

This commit is contained in:
Adrian Kreher 2008-11-14 12:48:56 -06:00
parent b437cfb68c
commit 3020be4bef

View file

@ -9,18 +9,18 @@ import XMonad.Util.Run
import System.IO
myLayoutHook = tiled ||| Mirror tiled ||| Grid ||| Full
where
-- default tiling algorithm partitions the screen into two panes
tiled = Tall nmaster delta ratio
where
-- default tiling algorithm partitions the screen into two panes
tiled = Tall nmaster delta ratio
-- The default number of windows in the master pane
nmaster = 1
-- The default number of windows in the master pane
nmaster = 1
-- Default proportion of screen occupied by master pane
ratio = 1/2
-- Default proportion of screen occupied by master pane
ratio = 1/2
-- Percent of screen to increment by when resizing panes
delta = 3/100
-- Percent of screen to increment by when resizing panes
delta = 3/100
main = do
xmproc <- spawnPipe "xmobar"