2019-12-02 18:01:58 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-05-16 17:05:09 +00:00
|
|
|
# force start or restart (all) polybar instances
|
|
|
|
# if ipc is enabled, can be replaced with `polybar-msg cmd restart`, provided polybar is not stuck
|
2019-12-02 18:01:58 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2019-12-02 19:58:36 +00:00
|
|
|
startbars() {
|
|
|
|
for bar in "$@"; do
|
|
|
|
local logfile="/tmp/polybar-$bar.log"
|
|
|
|
printf -- "---\npolybar: %s starting...\n---\n" "$bar" | tee -a "$logfile"
|
|
|
|
polybar "$bar" >>"$logfile" 2>&1 &
|
|
|
|
done
|
|
|
|
}
|
2019-12-02 18:01:58 +00:00
|
|
|
|
2019-12-02 19:58:36 +00:00
|
|
|
startbars "$@"
|
|
|
|
echo "Polybars launched..."
|