Files
dotfiles/.config/polybar/polybar.sh
Daniel Bauer 5a558b109e i3
2019-03-18 13:43:55 +01:00

14 lines
336 B
Bash
Executable File

#!/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 &
echo "Bars launched..."