From 5c8157f6180b167ca96b2c16ceb7d86289fea798 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 2 Nov 2024 13:26:18 -0500 Subject: [PATCH] Update default.inc --- default.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.inc b/default.inc index f9329d8..faa9419 100755 --- a/default.inc +++ b/default.inc @@ -269,7 +269,7 @@ PUSH_TO_MOBILE(){ elif [ "${MSGSOUND}" = "" ]; then MSGSOUND=classical fi - wget https://api.pushover.net/1/messages.json --post-data="token=${PUSHOVER_APP_TOKEN}&user=${PUSHOVER_USER_TOKEN}&message=${MESSAGE}&title=${TITLE}&priority=${PRIORITY}&sound=${MSGSOUND}" -qO- > /dev/null 2>&1 & + wget https://api.pushover.net/1/messages.json --post-data="token=${PUSHOVER_APP_TOKEN}&user=${PUSHOVER_USER_TOKEN}&message=${MESSAGE}&title=${TITLE}&priority=${PRIORITY}&sound=${MSGSOUND}&monospace=1" -qO- > /dev/null 2>&1 & # echo "token=${PUSHOVER_APP_TOKEN}&user=${PUSHOVER_USER_TOKEN}&message=${MESSAGE}&title=${TITLE}&priority=${PRIORITY}&sound=${MSGSOUND}" # wget https://api.pushover.net/1/messages.json --post-data="token=${PUSHOVER_APP_TOKEN}&user=${PUSHOVER_USER_TOKEN}&message=${MESSAGE}&title=${TITLE}&priority=${PRIORITY}&sound=${MSGSOUND}" }