Skip to content

Instantly share code, notes, and snippets.

@astropanic
Created November 21, 2010 13:25
Show Gist options
  • Select an option

  • Save astropanic/708736 to your computer and use it in GitHub Desktop.

Select an option

Save astropanic/708736 to your computer and use it in GitHub Desktop.
1_xmonad.hs
import XMonad.Layout.IM
import XMonad.Layout.PerWorkspace
import XMonad.Layout.Reflect
main = do
xmonad defaultConfig
{ layoutHook = onWorkspace "gimp" gimp }
where
gimp = withIM (0.11) (Role "gimp-toolbox") $
reflectHoriz $
withIM (0.15) (Role "gimp-dock") Full
import XMonad
import XMonad.Config.Gnome
main = xmonad gnomeConfig {
modMask = mod4Mask
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment