Created
May 16, 2017 05:57
-
-
Save kaave/07195e44e95329e56708965fd840d09a to your computer and use it in GitHub Desktop.
Xmonad config (tmp)
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.Hooks.EwmhDesktops -- for chrome's fullscreen mode | |
-- | |
-- import XMonad.Config.Desktop | |
-- | |
-- baseConfig = desktopConfig | |
main = do | |
xmonad $ defaultConfig | |
{ terminal = myTerminal | |
, handleEventHook = fullscreenEventHook -- for chrome's fullscreen mode | |
-- , modMask = myModMask | |
, borderWidth = myBorderWidth | |
, normalBorderColor = myNormalBorderColor | |
, focusedBorderColor = myFocusedBorderColor | |
} | |
myTerminal = "terminator" | |
-- myModMask = mod4Mask | |
myNormalBorderColor = "#eeeeee" | |
myFocusedBorderColor = "#e57373" | |
myBorderWidth = 1 | |
-- myBar = "xmobar" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment