dotfiles/home/dot_config/i3/scripts/executable_clipmenud.sh

12 lines
212 B
Bash
Raw Normal View History

2022-12-23 16:07:26 -08:00
#!/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 &