From 3a3e803e9836ffcf97e93a79e0e7badc6ef47eff Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 15 Apr 2015 02:51:46 +0200 Subject: [PATCH] xmonad: remove Gimp layout Gimp supports a simple single-window setup now. --- xmonad/xmonad.hs | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/xmonad/xmonad.hs b/xmonad/xmonad.hs index 69e3da8..7ae8dbb 100644 --- a/xmonad/xmonad.hs +++ b/xmonad/xmonad.hs @@ -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 -- 2.44.1