8 lines
403 B
Haskell
8 lines
403 B
Haskell
import XMonad
|
|
import XMonad.Config.Xfce
|
|
main = xmonad xfceConfig
|
|
{ terminal = "alacritty"
|
|
, modMask = mod1Mask -- optional: use Win key instead of Alt as MODi key
|
|
, startupHook = ewmhDesktopsStartup >> setWMName "LG3D" -- for some reason the double greater sign is escaped here due to wiki formatting, replace this with proper greater signs!
|
|
}
|