From 9657fce142ae65a1914bd1525f8bb86cbba6103a Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Sun, 23 Jul 2023 15:48:44 +0300 Subject: [PATCH] didnt work trying again --- config/xmonad/xmonad.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/xmonad/xmonad.hs b/config/xmonad/xmonad.hs index 5546d29b..cb963a1d 100644 --- a/config/xmonad/xmonad.hs +++ b/config/xmonad/xmonad.hs @@ -249,7 +249,9 @@ myStartupHook = do -- Run xmonad with the settings you specify. No need to modify this. -- -main = xmonad defaults +main = do + xmproc <- spawnPipe "xmobar" + xmonad defaults -- A structure containing your configuration settings, overriding -- fields in the default config. Any you don't override, will @@ -258,8 +260,6 @@ main = xmonad defaults -- No need to modify this. -- defaults = def { - -- xmobar - xmproc <- spawnPipe "xmobar" -- simple stuff terminal = myTerminal, focusFollowsMouse = myFocusFollowsMouse,