Skip to content

Commit

Permalink
skip boring windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mhansen committed Jul 10, 2013
1 parent 444a3e6 commit 075375a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xmonad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import XMonad.Prompt.Shell
import XMonad.Util.EZConfig
import XMonad.Layout.SubLayouts
import XMonad.Layout.WindowNavigation
import XMonad.Layout.BoringWindows

myManageHook :: ManageHook
myManageHook = composeAll (
Expand Down Expand Up @@ -45,10 +46,12 @@ main = xmonad $ gnomeConfig
, ("M-C-l", sendMessage(pullGroup R))
, ("M-C-k", sendMessage(pullGroup U))
, ("M-C-j", sendMessage(pullGroup D))
, ("M-j", focusDown)
, ("M-k", focusUp)
]


myLayout = windowNavigation(subTabbed(tiled ||| simpleTabbed))
myLayout = windowNavigation(subTabbed(boringWindows(tiled ||| simpleTabbed)))
where
tiled = Tall nmaster delta ratio --partitions the screen into two panes
nmaster = 1 -- default numer of windows in the master pane
Expand Down

0 comments on commit 075375a

Please sign in to comment.