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/gmg/launch.sh

15 lines
329 B
Bash
Raw Normal View History

2021-10-19 17:11:08 +02:00
#!/usr/bin/env bash
# Add this script to your wm startup file.
DIR="$HOME/.config/polybar/material"
# 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 &