X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/7fc45fb1d385fb6d5ad4e4e160c45e5be3efeb00..e6566456c87f40401d6aca731d1285b131134bbb:/polybar/.local/bin/launch-polybar diff --git a/polybar/.local/bin/launch-polybar b/polybar/.local/bin/launch-polybar new file mode 100755 index 0000000..49d56ca --- /dev/null +++ b/polybar/.local/bin/launch-polybar @@ -0,0 +1,12 @@ +#!/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 main bar +polybar example & + +echo "Bars launched..."