dotfiles/home/dot_config/sway/scripts/executable_clipmenud.sh
2023-04-01 16:23:45 -07:00

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 &