Advertisement
bss03

Simple KDE4 XMonad Config

Aug 10th, 2014
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module Main (main) where
  2.  
  3. import XMonad (mod4Mask)
  4. import XMonad.Core (XConfig(..))
  5. import XMonad.Main (xmonad)
  6.  
  7. import XMonad.Config.Kde (kde4Config)
  8.  
  9. main :: IO ()
  10. main = xmonad kde4Config
  11.         { modMask = mod4Mask
  12.         , workspaces = ["only"]
  13.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement