Fix notification expire timeout being treated as seconds instead of milliseconds

This commit is contained in:
David Heinemeier Hansson
2026-06-29 13:24:04 -05:00
parent 1220a031b3
commit fed2fd8e3d
2 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ case "$PROCESSING" in
wl-copy --type image/png <"$FILEPATH"
(
if [[ -n $(omarchy-notification-send "Screenshot saved to clipboard and file" "Edit with Super + Alt + , (or click this)" -t 10000 --image "$FILEPATH" -a) ]]; then
if [[ -n $(omarchy-notification-send "Screenshot saved to clipboard and file" "Edit with Super + Alt + , (or click this)" --image "$FILEPATH" -a) ]]; then
open_editor "$FILEPATH"
fi
) >/dev/null 2>&1 &