+ Added bspwm, sxhkd, and polybar

This commit is contained in:
ziro 2020-04-11 18:55:14 +07:00
parent 29a1ca8ab2
commit 9a50ab1c1a
14 changed files with 1558 additions and 0 deletions

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

@ -0,0 +1,13 @@
#!/bin/dash
# 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 Polybar, using default config location ~/.config/polybar/config
polybar bspwm &
echo "Polybar launched..."