#!/usr/bin/env fish # Terminate already running bar instances killall -q polybar # Wait until the processes have been shut down while pgrep -u $UID -x polybar >/dev/null sleep 1 end # Launch bar1 and bar2 polybar monitor1 & polybar monitor2 & echo "Bars launched..."