Fixing polybar

This commit is contained in:
Vlad Doster 2020-01-01 10:51:40 -05:00
parent ae39bd9316
commit f596aaa31a
2 changed files with 1 additions and 14 deletions

View File

@ -34,7 +34,7 @@ for_window [instance="dropdown_*"] move position center
# modifier None
#}
exec_always --no-startup-id $HOME/.config/polybar/launch.sh
exec_always --no-startup-id $HOME/.local/bin/launch_polybar
# #---Basic Bindings---# #
bindsym $mod+Shift+Return exec --no-startup-id samedir
@ -194,4 +194,3 @@ bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
exec_always --no-startup-id notify-send -i ~/.local/share/larbs/larbs.png 'Welcome to LARBS:' 'Press Super+F1 for the manual.' -t 10000

View File

@ -1,12 +0,0 @@
#!/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 mybar &
echo "Polybar launched..."