Hopefully fix it so that notifications aren't limited any more.

This commit is contained in:
Storm Dragon 2023-10-02 22:31:19 -04:00
parent 6063fac699
commit eb8fa44757
1 changed files with 2 additions and 2 deletions

View File

@ -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