]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
xmonad: remove Gimp layout
authorSimon Ruderich <simon@ruderich.org>
Wed, 15 Apr 2015 00:51:46 +0000 (02:51 +0200)
committerSimon Ruderich <simon@ruderich.org>
Wed, 15 Apr 2015 00:51:46 +0000 (02:51 +0200)
Gimp supports a simple single-window setup now.

xmonad/xmonad.hs

index 69e3da8bd51fdf08498d7ec06ee7004271b04723..7ae8dbb2aeda9d658ed4a6553469202d72ee6365 100644 (file)
@@ -20,12 +20,9 @@ import XMonad hiding ( (|||) )
 import XMonad.Actions.CycleWS (toggleWS)
 import XMonad.Hooks.ManageHelpers ((-?>), composeOne)
 import XMonad.Hooks.SetWMName (setWMName)
-import XMonad.Layout.IM (withIM, Property(..))
 import XMonad.Layout.LayoutCombinators ((|||), JumpToLayout(..))
 import XMonad.Layout.Named (named)
 import XMonad.Layout.NoBorders (smartBorders)
-import XMonad.Layout.PerWorkspace (onWorkspace)
-import XMonad.Layout.Reflect (reflectHoriz)
 import XMonad.Layout.TwoPane (TwoPane(..))
 import XMonad.Util.EZConfig (additionalKeys)
 import qualified XMonad.StackSet as W
@@ -66,13 +63,11 @@ avoidMaster = W.modify' $ \c -> case c of
 -- (http://nathanhowell.net/2009/03/08/xmonad-and-the-gimp/) for this layout
 -- (read on 2011-06-19).
 myLayoutHook =
-    onWorkspace "5" gimp
-    $ (
-        named "Default" (smartBorders $ Mirror tiled)
+    named "Default" (smartBorders $ Mirror tiled)
         ||| named "Full" (smartBorders Full)
         ||| named "Vertical" (smartBorders tiled)
         ||| named "Limit" (smartBorders $ Mirror $ TwoPane delta ratio)
-    ) where
+  where
     -- Default tiling algorithm partitions the screen into two panes.
     tiled   = Tall nmaster delta ratio
     -- The default number of windows in the master pane.
@@ -81,13 +76,6 @@ myLayoutHook =
     delta   = 3/100
     -- Default proportion of screen occupied by master pane.
     ratio   = 1/2
-    -- Special layout for Gimp: toolbox left, dock right, main window in the
-    -- center.
-    gimp    = withIM (0.11) (Role "gimp-toolbox") $
-              reflectHoriz $
-              withIM (0.15) (Role "gimp-dock")
-              -- Layouts for the centered window.
-              (Mirror tiled ||| Full)
 
 -- Don't spawn new windows in the master pane (which is at the top of the
 -- screen). Thanks to dschoepe, aavogt and especially vav in #xmonad on