From 454848572a9f9ae0752461f3cb36c632d332c0ce Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 5 Dec 2018 18:03:27 -0500 Subject: [PATCH] polybar: Fix padding It turns out that the left padding from the bspwm labels are used in addition to the left padding from polybar, so in order for padding to be consistent across both the left and right sections, the section with the bspwm module needs to have its padding subtracted by the amount used by the bspwm labels. --- polybar/.config/polybar/config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/polybar/.config/polybar/config b/polybar/.config/polybar/config index 71b13aa9..c6a1c5c2 100644 --- a/polybar/.config/polybar/config +++ b/polybar/.config/polybar/config @@ -31,7 +31,8 @@ font-2 = "Font Awesome 5 Free:style=Solid:size=10" font-3 = "Font Awesome 5 Free:style=Regular:size=10" font-4 = "Font Awesome 5 Brands:style=Regular:size=10" -padding = 2 +padding-left = 1 +padding-right = 2 module-margin = 1 [module/bspwm]