|
|
@ -21,7 +21,6 @@ import qualified XMonad.StackSet as W
|
|
21
|
21
|
|
|
22
|
22
|
main = do
|
|
23
|
23
|
kbMap <- newIORef "us"
|
|
24
|
|
xmobar <- spawnPipe "xmobar"
|
|
25
|
24
|
xmonad $ defaultConfig {
|
|
26
|
25
|
modMask = mod4Mask,
|
|
27
|
26
|
terminal = "urxvt",
|
|
|
@ -34,10 +33,6 @@ main = do
|
|
34
|
33
|
] <+> manageHook defaultConfig,
|
|
35
|
34
|
-- Don't overwrite the section used by docks
|
|
36
|
35
|
layoutHook = avoidStruts $ layoutHook defaultConfig ||| simpleTabbed,
|
|
37
|
|
logHook = dynamicLogWithPP xmobarPP {
|
|
38
|
|
ppOutput = hPutStrLn xmobar,
|
|
39
|
|
ppTitle = xmobarColor "green" ""
|
|
40
|
|
},
|
|
41
|
36
|
handleEventHook = evHook
|
|
42
|
37
|
} `additionalKeys` [
|
|
43
|
38
|
((mod4Mask, xK_b), spawnHere "chromium --allow-file-access-from-files"),
|