removed unused files for polybar

This commit is contained in:
Lucien Cartier-Tilet 2020-01-25 02:21:38 +01:00
parent 1de67c6710
commit 17f5f7cdff
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
2 changed files with 0 additions and 20 deletions

View File

@ -1 +0,0 @@
config

View File

@ -1,19 +0,0 @@
#!/usr/bin/env sh
killall -q polybar
# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
# Launch bar on all screens
if type "xrandr"; then
for m in $(xrandr --query | grep " connected" | cut -d" " -f1); do
MONITOR=$m polybar --reload top &
MONITOR=$m polybar --reload bottom &
done
else
polybar --reload top &
polybar --reload bottom &
fi
echo "Bars launched..."