From 345f06095eb21032540b2d79eaba7fe107d0afa2 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 22 Mar 2022 10:06:21 -0400 Subject: [PATCH] waybar: Increase padding between workspace buttons There was actually an issue where waybar was using larger padding than usual, which was fixed by setting the gsettings in our sway config. I liked the padding changes introduced by the other theme, however, so this change makes it permanent. --- waybar/.config/waybar/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waybar/.config/waybar/style.css b/waybar/.config/waybar/style.css index fd1ce88..a95fac5 100644 --- a/waybar/.config/waybar/style.css +++ b/waybar/.config/waybar/style.css @@ -12,13 +12,13 @@ window#waybar { } #workspaces button { - padding: 0 5px; + padding: 0 20px; background: transparent; color: white; } #workspaces button.focused { - padding: 0 5px; + padding: 0 20px; background: #64727D; background: @color8; }