diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-08 01:15:46 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-08 01:15:46 +0200 |
commit | 333434a6e96ca2920b79997e454c6a3dd457f49b (patch) | |
tree | 8f4c9e0f5ee7087d16a89f3141a3174858aded8c /dotfiles/xmonad.hs | |
parent | XMobar: Add fallback fonts (diff) | |
download | nixos-config-333434a6e96ca2920b79997e454c6a3dd457f49b.tar.gz nixos-config-333434a6e96ca2920b79997e454c6a3dd457f49b.tar.bz2 nixos-config-333434a6e96ca2920b79997e454c6a3dd457f49b.zip |
XMobar: Fix wrong offset in createDwmBox
Diffstat (limited to 'dotfiles/xmonad.hs')
-rw-r--r-- | dotfiles/xmonad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/xmonad.hs b/dotfiles/xmonad.hs index 3ac2d2e..1a823fb 100644 --- a/dotfiles/xmonad.hs +++ b/dotfiles/xmonad.hs @@ -249,7 +249,7 @@ myStatusBar = statusBarProp "xmobar" (do ) where getNumberOfWindowsInWorkpace = withWindowSet (pure . length . W.index) - createDwmBox color prefix = "<box type=HBoth offset=L19 color="++color++"><box type=Top mt=3 color="++color++"><box type=Top color="++color++">" ++ prefix ++ "</box></box></box>" + createDwmBox color prefix = "<box type=HBoth offset=L20 color="++color++"><box type=Top mt=3 color="++color++"><box type=Top color="++color++">" ++ prefix ++ "</box></box></box>" ------------------------------------------------------------------------ -- Launch xmonad with the aforementioned settings |