dotfiles/.config/polybar/scripts/isrunning-dropbox.sh
2024-01-29 08:31:23 -06:00

19 lines
295 B
Bash

#!/bin/sh
case "$1" in
--toggle)
if [ "$(pgrep dropbox)" ]; then
pkill -f dropbox
else
dropbox &
fi
;;
*)
if [ "$(pgrep dropbox)" ]; then
echo "#1"
else
echo "#2"
fi
;;
esac