1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00
dotfiles/polybar/.local/bin/polybar-laptop
2020-02-24 13:57:06 +01:00

16 lines
285 B
Fish
Executable File

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