Mercurial > dotfiles
comparison .xmonad/xmonad.hs @ 176:842607bbc090
Add xmonad configuration file.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Fri, 08 Jan 2010 17:11:20 -0600 |
parents | |
children | 2d8105525973 |
comparison
equal
deleted
inserted
replaced
175:4741c022c7ae | 176:842607bbc090 |
---|---|
1 import XMonad | |
2 | |
3 import XMonad | |
4 import XMonad.Layout | |
5 import XMonad.Layout.Column | |
6 import XMonad.Layout.LayoutBuilder | |
7 | |
8 myLayout = augie ||| Full | |
9 where augie = ((layoutN 2 (relBox 0 0 1 0.75) (Just $ relBox 0 0 1 1) $ (Tall 1 0.03 0.75)) | |
10 $ (layoutAll (relBox 0 0.75 1 1) $ (Mirror (Column 1)))) | |
11 | |
12 | |
13 main :: IO () | |
14 main = xmonad $ defaultConfig | |
15 { terminal = "urxvt" | |
16 , modMask = mod4Mask | |
17 , layoutHook = myLayout | |
18 } |