polybar config

This commit is contained in:
bauer
2017-11-22 12:59:57 +01:00
parent faf5196ff1
commit 33d6c593d2
4 changed files with 446 additions and 0 deletions

12
polybar/polybar.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch bar1 and bar2
polybar -c ~/.config/polybar/config example_left &
polybar -c ~/.config/polybar/config example_right &
echo "Bars launched..."