update vimrc & xmonad
[dotfiles.git] / .xmonad / xmonad.hs
index e189c5c8ea1c2c7ee805679c0182518ed8591c3d..cbe36615fa6c636628d399fcc6faef32af2d7654 100644 (file)
@@ -9,6 +9,8 @@ import XMonad.Layout.PerWorkspace
 import XMonad.Layout.Spacing
 import XMonad.Layout.ThreeColumns
 import XMonad.Layout.Spiral
+import XMonad.Layout.NoBorders
+--import XMonad.Layout.Fullscreen
 import Data.Ratio
 import System.IO
 
@@ -16,10 +18,11 @@ threeColLayout = ThreeCol 2 (3/100) (1/2)
 tallLayout     = Tall 1 (5/100) (2/3)
 spiralLayout   = spiral (1 % 1)
 
-mLayout = spacing 7 
+mLayout = spacing 0 
        $ tallLayout 
        ||| threeColLayout 
        ||| spiralLayout
+       ||| noBorders Full
 
 mStartupHook :: X ()
 mStartupHook = do
@@ -56,7 +59,6 @@ mManageHook = composeAll
        , className =? "steam"                --> doShift "game"
        , appName   =? "steam.sh"             --> doShift "game"
        , className =? "steam.sh"             --> doShift "game"
-       , appName   =? "gimp"                 --> doShift "extra"
        ]
 
 mWorkspaces = ["mon", "term", "www", "chat", "music", "mail", "game", "code", "extra"]