From: Oleg Broytman Date: Mon, 6 Apr 2020 21:43:03 +0000 (+0300) Subject: Feat(im-status.sh): Check if the programs are running X-Git-Url: https://git.phdru.name/?p=IM.git;a=commitdiff_plain;h=a7c1fd5df8be7fd5245551fd1931d243970d2dfe Feat(im-status.sh): Check if the programs are running --- diff --git a/im-status.sh b/im-status.sh index 8d5685b..21abf82 100755 --- a/im-status.sh +++ b/im-status.sh @@ -36,7 +36,9 @@ esac xtitle "$1" "$2" "$title" && if [ "`gajim-remote check_gajim_running 2>/dev/null | tail -1`" = True ]; then gajim-remote change_status "$2" "$title" -else +elif pgrep pidgin >/dev/null; then purple-remote "setstatus?status=$status&message=$status_msg" fi -exec skype_status_mood.py "$skype_status" "$3" >/dev/null 2>&1 +if pgrep skype >/dev/null; then + exec skype_status_mood.py "$skype_status" "$3" >/dev/null 2>&1 +fi