Files
dotfiles/polybar/polybar_laptop.sh
2018-09-04 14:39:42 +02:00

12 lines
242 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 example_laptop &
echo "Bars launched..."