1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-24 00:02:19 +00:00

Add polybar

This commit is contained in:
J. Fernando Sánchez
2018-09-12 19:01:24 +02:00
parent f0202964ec
commit 6f97821cae
5 changed files with 55 additions and 32 deletions

15
scripts/.bin/polybar.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/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
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload main &
done
else
polybar --reload main &
fi