You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
246 B
15 lines
246 B
5 years ago
|
#!/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 bar &
|
||
|
|
||
|
echo "Bar launched..."
|
||
|
|