myNixOSConfig/system/desktop/xmonad/xmonad.hs
2024-09-07 08:36:34 +02:00

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!
}