From e9eabe81c8f7f392f732b40fdb3fd99aeaa3c202 Mon Sep 17 00:00:00 2001 From: Trey Blancher Date: Sun, 31 May 2020 17:11:35 -0400 Subject: [PATCH] Initial bottom_dock commit --- xmonad.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xmonad.hs b/xmonad.hs index ca3d801..3bd1766 100755 --- a/xmonad.hs +++ b/xmonad.hs @@ -234,6 +234,7 @@ flags = "-e onstart lower -w 800 -h 24 -ta l -fg #aaaaaa -bg #000000 -fn 'xos4 T main = do dzenCenterBar <- spawnPipe centerBar + dzenBottomBar <- spawnPipe bottomBar -- dzenLeftBar <- spawnPipe leftBar -- dzenRightBar <- spawnPipe rightBar xmonad $ docks $ ewmh $ desktopConfig { @@ -265,6 +266,8 @@ myStartup = do myBitmapsDir = "/home/trey/.xmonad/dzen2" --leftBar = "dzen2 -w 0 -h 24 -ta l -fg #555753 -bg #000000 -fn Terminus-10 -xs 1" centerBar = "dzen2 -dock -p -x 2060 -ta l -w 1024 -e 'onstart:lower;button2=togglehide'" +bottomBar = "conky | dzen2 -dock -p -y 1056 -ta l -w 1920" + -- rightBar = "dzen2 -w 3840 -h 24 -ta r -fg #555753 -bg #000000 -fn Terminus-10 -xs 2" myLogHook :: Handle -> X ()