mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
12 lines
212 B
Bash
12 lines
212 B
Bash
|
|
#!/usr/bin/env sh
|
|
|
|
# Terminate already running bar instances
|
|
pkill clipmenud
|
|
|
|
# Wait until the processes have been shut down
|
|
while pgrep -x clipmenud >/dev/null; do sleep 1; done
|
|
|
|
# Launch clipmenud
|
|
clipmenud &
|