# HG changeset patch # User Augie Fackler # Date 1262992280 21600 # Node ID 842607bbc09003b36cf7aed8e6d4cf5b8a6d34f2 # Parent 4741c022c7aefec38e171ebae9ec404485a007d3 Add xmonad configuration file. diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs new file mode 100644 --- /dev/null +++ b/.xmonad/xmonad.hs @@ -0,0 +1,18 @@ +import XMonad + +import XMonad +import XMonad.Layout +import XMonad.Layout.Column +import XMonad.Layout.LayoutBuilder + +myLayout = augie ||| Full + where augie = ((layoutN 2 (relBox 0 0 1 0.75) (Just $ relBox 0 0 1 1) $ (Tall 1 0.03 0.75)) + $ (layoutAll (relBox 0 0.75 1 1) $ (Mirror (Column 1)))) + + +main :: IO () +main = xmonad $ defaultConfig + { terminal = "urxvt" + , modMask = mod4Mask + , layoutHook = myLayout + }