myNixOSConfig/system/desktop/xmonad/xmonad.hs

8 lines
403 B
Haskell
Raw Normal View History

2024-09-07 08:36:34 +02:00
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!
}