diff options
| author | Christian <[email protected]> | 2026-07-18 07:34:34 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-07-18 07:34:34 -0500 |
| commit | a70806e0908793d138ee0a584f1ade372690f0d8 (patch) | |
| tree | 0d19c5d4ab711aeb7f39432e243225a5cd06d323 | |
| parent | 5ba2560742fe94deceadf09c72778becfe1f84e7 (diff) | |
Add EWMH to XMonad
| -rw-r--r-- | modules/xmonad.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/xmonad.hs b/modules/xmonad.hs index 55f6b22..2eff878 100644 --- a/modules/xmonad.hs +++ b/modules/xmonad.hs @@ -2,6 +2,7 @@ import XMonad import XMonad.Util.EZConfig (additionalKeys) import Graphics.X11.ExtraTypes.XF86 import XMonad.Util.SpawnOnce (spawnOnce) +import XMonad.Hooks.EwmhDesktops import XMonad.Hooks.ManageDocks import XMonad.Hooks.StatusBar import XMonad.Hooks.StatusBar.PP @@ -36,4 +37,4 @@ myConfig = defaultConfig mySB = statusBarProp "xmobar" (pure xmobarPP { ppTitle = const "" }) -- main = xmonad $ withEasySB mySB defToggleStrutsKey def -main = getDirectories >>= launch (docks $ withSB mySB myConfig) +main = getDirectories >>= launch (ewmhFullscreen $ ewmh $ docks $ withSB mySB myConfig) |
