Add polybar scripts

This commit is contained in:
Marty Oehme 2019-12-02 19:01:58 +01:00
parent a5d4ec5e4a
commit 9b4dd143f7
4 changed files with 106 additions and 5 deletions

14
.local/bin/polybar/poly-launch Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Terminate already running bar instances
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
echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
polybar mine >>/tmp/polybar1.log 2>&1 &
# polybar bar2 >>/tmp/polybar2.log 2>&1 &
echo "Polybar launched..."