mirror of
https://github.com/cizordj/i3-themer.git
synced 2026-09-20 03:18:29 +00:00
12 lines
206 B
Bash
12 lines
206 B
Bash
|
|
|
|
# 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
|
|
|