mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-08 13:10:37 +00:00
14 lines
252 B
Bash
14 lines
252 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
# Terminate already running bar instances
|
||
|
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 top &
|
||
|
|
||
|
|
||
|
echo "Bars launched..."
|