diff options
| author | Alessio Artoni <34690870+aartoni@users.noreply.github.com> | 2025-02-28 15:57:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-28 14:57:16 +0000 |
| commit | 53f1df79e5bfa6374ea699f3aa1e71fabee079d6 (patch) | |
| tree | 2e692977ae90cf81c8e00fcf0221546a771b6da2 /.config/nsxiv/exec/key-handler | |
| parent | e83e5ecef01ca14fe7f1ebf34962b56805f39252 (diff) | |
| download | eibhear-53f1df79e5bfa6374ea699f3aa1e71fabee079d6.tar.gz eibhear-53f1df79e5bfa6374ea699f3aa1e71fabee079d6.tar.zst eibhear-53f1df79e5bfa6374ea699f3aa1e71fabee079d6.zip | |
Fix magick related actions in nsxiv (#1449)
Diffstat (limited to '.config/nsxiv/exec/key-handler')
| -rwxr-xr-x | .config/nsxiv/exec/key-handler | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/nsxiv/exec/key-handler b/.config/nsxiv/exec/key-handler index c743be4..fbbf289 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" & ;; |
