feat(polybar): update polybar style

This commit is contained in:
Anhgelus Morhtuuzh 2023-07-25 23:46:05 +02:00
parent 9f00495503
commit c57e8ab185
No known key found for this signature in database
GPG key ID: 7765EC9C8383805F
604 changed files with 86703 additions and 181 deletions

14
config/polybar/blocks/launch.sh Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Add this script to your wm startup file.
DIR="$HOME/.config/polybar/blocks"
# 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 the bar
polybar -q main -c "$DIR"/config.ini &