aboutsummaryrefslogtreecommitdiff
path: root/.config/nsxiv/exec/key-handler
diff options
context:
space:
mode:
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" & ;;