added polybar config

This commit is contained in:
2020-06-11 16:22:40 +02:00
parent 9d9feafbfd
commit 05ec5fa485
2 changed files with 432 additions and 0 deletions

13
.config/polybar/launch.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
# 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 main &
echo "Bars launched..."