X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?p=dotfiles.git;a=blobdiff_plain;f=.xmonad%2Fxmonad.hs;h=cbe36615fa6c636628d399fcc6faef32af2d7654;hp=e189c5c8ea1c2c7ee805679c0182518ed8591c3d;hb=refs%2Fheads%2Fmaster;hpb=7aad4edb8daaeb513c80e8050e5b8eef56e15ff2 diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index e189c5c..cbe3661 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -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"]