12 lines
311 B
Bash
12 lines
311 B
Bash
|
#!/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 &
|