mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
b1335a3628
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
14 lines
252 B
Bash
Executable File
14 lines
252 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# Terminate already running bar instances
|
|
killall -q polybar
|
|
|
|
# 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 top &
|
|
|
|
|
|
echo "Bars launched..."
|