mirror of
https://github.com/cizordj/i3-themer.git
synced 2024-04-21 12:32:12 +00:00
12 lines
257 B
Bash
12 lines
257 B
Bash
# Basic script to kill all old bars and launch new.
|
|
|
|
# Terminate already running bad instances
|
|
killall -q polybar
|
|
|
|
# Wait until the processes have been shut down
|
|
while grep -x polybar >/dev/null; do sleep 1; done
|
|
|
|
# Launch the example bar
|
|
polybar main_bar
|
|
|