From eb8fa447578153066e8cd8017397c4324f1b811b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 2 Oct 2023 22:31:19 -0400 Subject: [PATCH] Hopefully fix it so that notifications aren't limited any more. --- scripts/reminder.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/reminder.sh b/scripts/reminder.sh index a79076b..ae8677b 100755 --- a/scripts/reminder.sh +++ b/scripts/reminder.sh @@ -271,9 +271,9 @@ if [[ $# -ne 0 ]]; then fi if command -v xclip &> /dev/null && [[ "${#url}" -gt 3 ]]; then echo "${url}" | xclip -selection clipboard - notify-send "${notification} The URL has been copied to the clipboard." --expire-time=30000 + notify-send --hint=int:transient:1 -t 500 -r 38 "${notification} The URL has been copied to the clipboard." else - notify-send "${*}" --expire-time=30000 + notify-send --hint=int:transient:1 -t 500 -r 38 "${*}" fi exit 0 fi