2017-12-25 16:35:45 +00:00
|
|
|
#!/usr/bin/env sh
|
2021-09-11 21:45:56 +00:00
|
|
|
|
2017-12-25 19:07:59 +00:00
|
|
|
#
|
2021-09-11 21:45:56 +00:00
|
|
|
# {{@@ header() @@}}
|
2017-12-25 19:07:59 +00:00
|
|
|
#
|
2017-12-25 16:35:45 +00:00
|
|
|
|
|
|
|
# Terminate already running bar instances
|
|
|
|
killall -q polybar
|
|
|
|
killall -q refresh_bar_usb_nic.sh
|
|
|
|
|
|
|
|
# Wait until the processes have been shut down
|
|
|
|
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
|
|
|
|
|
|
|
# Launch bar1 and bar2
|
|
|
|
polybar -r -q 9560-top &
|
|
|
|
polybar -r -q 9560-bottom &
|
2021-09-11 21:45:56 +00:00
|
|
|
{{@@ env['HOME'] @@}}/.config/polybar/refresh_bar_usb_nic.sh &
|