aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.config/sxiv/exec/key-handler
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.config/sxiv/exec/key-handler')
-rwxr-xr-xdotfiles/.config/sxiv/exec/key-handler12
1 files changed, 12 insertions, 0 deletions
diff --git a/dotfiles/.config/sxiv/exec/key-handler b/dotfiles/.config/sxiv/exec/key-handler
index 8fa1bdb..d9bad9f 100755
--- a/dotfiles/.config/sxiv/exec/key-handler
+++ b/dotfiles/.config/sxiv/exec/key-handler
@@ -1,5 +1,14 @@
#!/bin/sh
+rotate() {
+ degree="$1"
+ file="$2"
+ case "$(file -b -i "$file")" in
+ image/jpeg*) jpegtran -rotate "$degree" -copy all -outfile "$file" "$file" ;;
+ *) mogrify -rotate "$degree" "$file" ;;
+ esac
+}
+
while read file; do
case "$1" in
"C-a" | "C-1")
@@ -31,5 +40,8 @@ while read file; do
mv $(dirname "$dir")/"$base".NEF ~/etc/temp/trash/
fi
exit ;;
+ "C-comma") rotate 270 $file ;;
+ "C-period") rotate 90 $file ;;
+ "C-slash") rotate 180 $file ;;
esac
done