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/shapes/preview.sh
Gianmarco Gargiulo aadad1ab9f First commit
2021-10-19 17:11:08 +02:00

15 lines
372 B
Bash
Executable file

#!/usr/bin/env bash
DIR="$HOME/.config/polybar/shapes"
# 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 preview bar
polybar -q top -c "$DIR"/preview.ini &
polybar -q mid -c "$DIR"/preview.ini &
polybar -q bottom -c "$DIR"/preview.ini &