From 69346a9911a0ae408cade043c535aa548b03709f Mon Sep 17 00:00:00 2001 From: Ryan Kes <> Date: Wed, 2 Dec 2020 09:28:16 +0100 Subject: [PATCH] feat: added spacing to bluetooth icon --- polybar/.config/polybar/bin/isactive-bluetooth | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polybar/.config/polybar/bin/isactive-bluetooth b/polybar/.config/polybar/bin/isactive-bluetooth index b8d4a78..900aae8 100755 --- a/polybar/.config/polybar/bin/isactive-bluetooth +++ b/polybar/.config/polybar/bin/isactive-bluetooth @@ -1,7 +1,7 @@ #!/bin/sh if [ "$(systemctl is-active bluetooth.service)" = "active" ]; then - echo "" + echo "" else - echo "%{F#666}%{F-}" + echo "%{F#666} %{F-}" fi