dotfiles/smol/i3/polybar.sh

12 lines
311 B
Bash
Raw Normal View History

2023-02-14 18:49:46 +00:00
#!/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 polybar
polybar top 2>> /home/username/.logs/polybar_top.log &
polybar bottom 2>> /home/username/.logs/polybar_bot.log &