diff --git a/.config/polybar/.gitignore b/.config/polybar/.gitignore deleted file mode 100644 index 04204c7..0000000 --- a/.config/polybar/.gitignore +++ /dev/null @@ -1 +0,0 @@ -config diff --git a/.config/polybar/launch.sh b/.config/polybar/launch.sh deleted file mode 100755 index f14c011..0000000 --- a/.config/polybar/launch.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env sh - -killall -q polybar - -# Wait until the processes have been shut down -while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done - -# Launch bar on all screens -if type "xrandr"; then - for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do - MONITOR=$m polybar --reload top & - MONITOR=$m polybar --reload bottom & - done -else - polybar --reload top & - polybar --reload bottom & -fi - -echo "Bars launched..."