This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/polybar/docky/launch.sh
Gianmarco Gargiulo aadad1ab9f First commit
2021-10-19 17:11:08 +02:00

15 lines
326 B
Bash
Executable file

#!/usr/bin/env bash
# Add this script to your wm startup file.
DIR="$HOME/.config/polybar/docky"
# 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 the bar
polybar -q main -c "$DIR"/config.ini &