diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2024-07-15 13:02:59 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2024-07-15 13:02:59 -0400 |
| commit | 6556ef5c4d78b55d80b5e59f187d7a39f973afa0 (patch) | |
| tree | 6c0534c35586d25ac6245af895d40ecc70cc8e15 /.config/nsxiv/exec/key-handler | |
| parent | 475e4abb4084008198f1d9a23de6450e02b074a9 (diff) | |
| download | eibhear-6556ef5c4d78b55d80b5e59f187d7a39f973afa0.tar.gz eibhear-6556ef5c4d78b55d80b5e59f187d7a39f973afa0.tar.zst eibhear-6556ef5c4d78b55d80b5e59f187d7a39f973afa0.zip | |
close #1423
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 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" & ;; |
