From 6556ef5c4d78b55d80b5e59f187d7a39f973afa0 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 15 Jul 2024 13:02:59 -0400 Subject: close #1423 --- .config/nsxiv/exec/key-handler | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.config/nsxiv/exec/key-handler') diff --git a/.config/nsxiv/exec/key-handler b/.config/nsxiv/exec/key-handler index 4c78f18..c743be4 100755 --- a/.config/nsxiv/exec/key-handler +++ b/.config/nsxiv/exec/key-handler @@ -14,11 +14,11 @@ do mv "$file" "$destdir" && notify-send -i "$(readlink -f "$file")" "$file moved to $destdir." & ;; "r") - convert -rotate 90 "$file" "$file" ;; + magick -rotate 90 "$file" "$file" ;; "R") - convert -rotate -90 "$file" "$file" ;; + magick -rotate -90 "$file" "$file" ;; "f") - convert -flop "$file" "$file" ;; + magick -flop "$file" "$file" ;; "y") printf "%s" "$file" | tr -d '\n' | xclip -selection clipboard && notify-send "$file copied to clipboard" & ;; -- cgit v1.3.1