diff options
| author | Baitinq <[email protected]> | 2022-07-08 01:15:46 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-08 01:15:46 +0200 |
| commit | 38a4ca99054fbc608d819155d2e54fa61d642f6d (patch) | |
| tree | e46dd95372c31d8a9cdd0d36607cac2893a902d6 /dotfiles/xmonad.hs | |
| parent | XMobar: Add fallback fonts (diff) | |
| download | nixos-config-38a4ca99054fbc608d819155d2e54fa61d642f6d.tar.gz nixos-config-38a4ca99054fbc608d819155d2e54fa61d642f6d.tar.bz2 nixos-config-38a4ca99054fbc608d819155d2e54fa61d642f6d.zip | |
XMobar: Fix wrong offset in createDwmBox
Diffstat (limited to '')
| -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 |