d0tfiles

*nix dotfiles for arch linux setup
Log | Files | Refs | README | LICENSE

launch.sh (267B)


      1 #!/usr/bin/env bash
      2 
      3 # Terminate already running bar instances
      4 killall -q polybar
      5 
      6 # Wait until the processes have been shut down
      7 while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
      8 
      9 # Launch the bar
     10 polybar main -c "$HOME"/.config/polybar/beach/config.ini &