12 lines
274 B
Bash
12 lines
274 B
Bash
export XDG_DATA_HOME="$HOME/.local/share"
|
|
|
|
if [[ -n $SSH_CONNECTION ]] ; then
|
|
curl \
|
|
-H "Title: Test" \
|
|
-H "Priority: high" \
|
|
-H "Tags: warning" \
|
|
-d "$(cat /etc/hostname ): ssh session" \
|
|
ntfy.sh/tasiaiso_alerts &> /dev/null
|
|
fi
|
|
|