From c71ad1db04d9fa988d5c933e98f90bebb704bef4 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Tue, 25 Nov 2025 22:43:15 +0400 Subject: fix(sclip): use proper api for `notify_handle` --- scripts/gui/sclip | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/gui/sclip b/scripts/gui/sclip index 3e4c30d..5b56e4b 100755 --- a/scripts/gui/sclip +++ b/scripts/gui/sclip @@ -58,15 +58,15 @@ fi if [ "${silent}" -eq 0 ]; then if [ "${status}" -eq 0 ]; then if [ -n "${filepath}" ]; then - notify_handle send "Copied file: ${filepath}" + notify_handle send 5 "Copied file: ${filepath}" else - notify_handle "Copied text" + notify_handle send 5 "Copied text" fi else if [ -n "${filepath}" ]; then - notify_handle send "Failed to copy file: ${filepath}" + notify_handle send 5 "Failed to copy file: ${filepath}" else - notify_handle send "Failed to copy text" + notify_handle send 5 "Failed to copy text" fi fi fi -- cgit v1.2.3