Push dots

This commit is contained in:
Marco Thomas
2020-08-21 17:09:27 +02:00
committed by Marc
commit 246e1fb1fc
330 changed files with 16534 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
killall -q polybar
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
if type "xrandr"; then
for mon in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$mon polybar --reload workspaces &
MONITOR=$mon polybar --reload middle &
MONITOR=$mon polybar --reload status &
done
else
echo "No Bars loaded."
fi