diff options
author | tdback <tyler@tdback.net> | 2025-02-03 21:25:38 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-02-03 21:25:38 -0500 |
commit | 68243da80a76b94bf464db5751b4b3d08c7c7e1f (patch) | |
tree | b8c012397ea15803c7f881f33a267db1fb667362 | |
parent | 833e19f0e48d9e3f5bd5004701d06d5d6d550be4 (diff) |
move to X monad for breaking change in xmonad-contrib 0.18.1
-rw-r--r-- | lib/LogHook.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LogHook.hs b/lib/LogHook.hs index b10fba0..f50a316 100644 --- a/lib/LogHook.hs +++ b/lib/LogHook.hs @@ -15,7 +15,7 @@ myLogHook = return () withStatusBars :: (LayoutClass l Window) => XConfig l -> XConfig l withStatusBars = dynamicSBs barSpawner -barSpawner :: ScreenId -> IO StatusBarConfig +barSpawner :: ScreenId -> X StatusBarConfig barSpawner = pure . xmobar where pp :: PP |