aboutsummaryrefslogtreecommitdiff
path: root/.config/nsxiv/exec/key-handler
diff options
context:
space:
mode:
authorCaleb Noelke <cjn075@firemail.cc>2024-10-21 12:54:52 -0400
committerCaleb Noelke <cjn075@firemail.cc>2024-10-21 12:54:52 -0400
commitfe96c467eec5d66864dde93b4b5186524e258fd1 (patch)
treef9c7550e03241bb087ade674b459667b1f63ae9a /.config/nsxiv/exec/key-handler
parent398886b6d4631bb1e695bf7851f1012c64f6895a (diff)
parent628ed4dc995f3c09e33c24a01c817c18b1a268af (diff)
Diffstat (limited to '.config/nsxiv/exec/key-handler')
-rwxr-xr-x.config/nsxiv/exec/key-handler6
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" & ;;