view .xmonad/xmonad.hs @ 181:2d8105525973

xmonad: add another layout, fix terminal colors, add screensaver lock binding
author Augie Fackler <durin42@gmail.com>
date Wed, 13 Jan 2010 10:35:48 -0600
parents 842607bbc090
children 4481fb6c3dfe
line wrap: on
line source

import XMonad

import XMonad
import XMonad.Layout
import XMonad.Layout.Column
import XMonad.Layout.LayoutBuilder
import XMonad.Util.EZConfig

myLayout = augie2 ||| augie1 ||| Full
  where augie2 = ((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))))
        augie1 = ((layoutN 1 (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 -sr -bg Black -fg White"
       , modMask = mod4Mask
       , layoutHook = myLayout
       } `additionalKeys` [
         ((mod4Mask, xK_a), spawn "gnome-screensaver-command --lock")
         ]