dotfiles/.config/polybar/launch.sh
Severin Kaderli 6744982639 Add polybar configuration
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2017-06-15 21:21:24 +02:00

11 lines
233 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 top2 &