From 53f1df79e5bfa6374ea699f3aa1e71fabee079d6 Mon Sep 17 00:00:00 2001 From: Alessio Artoni <34690870+aartoni@users.noreply.github.com> Date: Fri, 28 Feb 2025 15:57:16 +0100 Subject: [PATCH] Fix magick related actions in nsxiv (#1449) --- .config/nsxiv/exec/key-handler | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/nsxiv/exec/key-handler b/.config/nsxiv/exec/key-handler index c743be42..fbbf2899 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") - magick -rotate 90 "$file" "$file" ;; + magick "$file" -rotate 90 "$file" ;; "R") - magick -rotate -90 "$file" "$file" ;; + magick "$file" -rotate -90 "$file" ;; "f") - magick -flop "$file" "$file" ;; + magick "$file" -flop "$file" ;; "y") printf "%s" "$file" | tr -d '\n' | xclip -selection clipboard && notify-send "$file copied to clipboard" & ;;