Created
September 25, 2014 11:21
-
-
Save lithuak/e242e4cf13938568d1ec to your computer and use it in GitHub Desktop.
xmonad config!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XMonad | |
import XMonad.Util.EZConfig(additionalKeys) | |
import qualified XMonad.StackSet as W | |
import System.IO | |
import XMonad.Hooks.DynamicLog | |
-- +! scrot on printScreen | |
myManageHook = composeAll | |
[ className =? "MPlayer" --> doFloat | |
, className =? "Chromium-browser" --> moveTo "7" | |
, className =? "jetbrains-pycharm" --> moveTo "1" | |
] | |
where moveTo = doF . W.shift | |
main = xmonad $ defaultConfig { | |
modMask = mod4Mask, | |
normalBorderColor = "black", | |
terminal = "gnome-terminal", | |
manageHook = myManageHook | |
} `additionalKeys` | |
[ | |
((controlMask, xK_F1), windows $ W.view "1"), | |
((controlMask, xK_F2), windows $ W.view "2"), | |
((controlMask, xK_F3), windows $ W.view "3"), | |
((controlMask, xK_F4), windows $ W.view "4"), | |
((controlMask, xK_F5), windows $ W.view "5"), | |
((controlMask, xK_F6), windows $ W.view "6"), | |
((controlMask, xK_F7), windows $ W.view "7"), | |
((controlMask, xK_F8), windows $ W.view "8") | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment