Update dot_config/bspwm/executable_bspwmrc

Remove dot_config/polybar/executable_launch.sh
This commit is contained in:
Dorian Wood 2021-04-22 10:24:21 -04:00
parent 40573d56c4
commit 045d4be20d
2 changed files with 2 additions and 12 deletions

View File

@ -4,6 +4,8 @@ pgrep -x sxhkd > /dev/null || sxhkd &
bspc monitor -d I II III IV V VI VII VIII IX X
bspc config normal_border_color #42395D
bspc config focused_border_color #C2FFDF
bspc config border_width 3
bspc config window_gap 5

View File

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