1
0
Fork 0
mirror of https://github.com/eoli3n/dotfiles synced 2024-05-27 09:56:07 +02:00
eoli3n-dotfiles/.config/polybar/launch.sh
2016-12-27 20:05:23 +01:00

14 lines
260 B
Bash
Executable File

#!/usr/bin/env sh
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch bar1 and bar2
polybar top &
polybar bottom &
echo "Bars launched..."