desktop->shared

This commit is contained in:
Daniel Bauer
2020-02-20 10:32:33 +01:00
parent f73d80c03f
commit 683a113df7
44 changed files with 470 additions and 62 deletions

View File

@@ -0,0 +1,14 @@
#!/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 workstation &
polybar -c ~/.config/polybar/config workstation2 &
polybar -c ~/.config/polybar/config laptop &
polybar -c ~/.config/polybar/config laptop_station &
echo "Bars launched..."