Skip to content

Instantly share code, notes, and snippets.

@bshepherdson
Created November 21, 2010 13:34
Show Gist options
  • Select an option

  • Save bshepherdson/708740 to your computer and use it in GitHub Desktop.

Select an option

Save bshepherdson/708740 to your computer and use it in GitHub Desktop.
import XMonad
import XMonad.Layout.IM
import XMonad.Layout.PerWorkspace
import XMonad.Layout.Reflect
import XMonad.Config.Gnome
main = xmonad gnomeConfig {
layoutHook = onWorkspace "gimp" gimp $ layoutHook gnomeConfig
,modMask = mod4Mask
,workspaces = ["1","2","3","4","5","6","7","8","9","gimp"]
}
where
gimp = withIM (0.11) (Role "gimp-toolbox") $
reflectHoriz $
withIM (0.15) (Role "gimp-dock") Full
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment