2014-01-02 23:19:31 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-09-16 11:32:59 +02:00
|
|
|
# Example for $XDG_CONFIG_HOME/nsxiv/exec/key-handler
|
|
|
|
# Called by nsxiv(1) after the external prefix key (C-x by default) is pressed.
|
2015-05-18 19:09:10 +02:00
|
|
|
# The next key combo is passed as its first argument. Passed via stdin are the
|
2021-11-19 11:08:39 +01:00
|
|
|
# images to act upon: all marked images, if in thumbnail mode and at least one
|
|
|
|
# image has been marked, otherwise the current image. nsxiv(1) will block until
|
|
|
|
# the handler terminates. It then checks which images have been modified and
|
|
|
|
# reloads them.
|
|
|
|
|
|
|
|
# By default nsxiv(1) will send one image per-line to stdin, however when using
|
|
|
|
# -0 the image list will be NULL separated and the enviornment variable
|
|
|
|
# "$NSXIV_USING_NULL" will be set to 1.
|
2014-01-05 22:07:21 +01:00
|
|
|
|
|
|
|
# The key combo argument has the following form: "[C-][M-][S-]KEY",
|
|
|
|
# where C/M/S indicate Ctrl/Meta(Alt)/Shift modifier states and KEY is the X
|
|
|
|
# keysym as listed in /usr/include/X11/keysymdef.h without the "XK_" prefix.
|
2021-09-28 12:19:41 +02:00
|
|
|
# If KEY has an uppercase equivalent, S-KEY is resolved into it. For instance,
|
|
|
|
# K replaces S-k and Scedilla replaces S-scedilla, but S-Delete is sent as-is.
|
2014-01-05 22:07:21 +01:00
|
|
|
|
2014-08-18 20:21:42 +02:00
|
|
|
rotate() {
|
2014-11-27 22:37:20 +01:00
|
|
|
degree="$1"
|
2017-02-13 11:20:58 +01:00
|
|
|
tr '\n' '\0' | xargs -0 realpath | sort | uniq | while read file; do
|
2014-08-20 11:39:56 +02:00
|
|
|
case "$(file -b -i "$file")" in
|
|
|
|
image/jpeg*) jpegtran -rotate "$degree" -copy all -outfile "$file" "$file" ;;
|
|
|
|
*) mogrify -rotate "$degree" "$file" ;;
|
|
|
|
esac
|
|
|
|
done
|
2014-08-18 20:21:42 +02:00
|
|
|
}
|
|
|
|
|
2018-12-31 15:16:25 +01:00
|
|
|
case "$1" in
|
2019-01-01 13:45:26 +01:00
|
|
|
"C-x") xclip -in -filter | tr '\n' ' ' | xclip -in -selection clipboard ;;
|
2017-09-02 22:18:07 +02:00
|
|
|
"C-c") while read file; do xclip -selection clipboard -target image/png "$file"; done ;;
|
2014-11-27 22:37:20 +01:00
|
|
|
"C-e") while read file; do urxvt -bg "#444" -fg "#eee" -sl 0 -title "$file" -e sh -c "exiv2 pr -q -pa '$file' | less" & done ;;
|
|
|
|
"C-g") tr '\n' '\0' | xargs -0 gimp & ;;
|
2019-01-01 13:47:46 +01:00
|
|
|
"C-r") while read file; do rawtherapee "$file" & done ;;
|
2014-11-27 22:37:20 +01:00
|
|
|
"C-comma") rotate 270 ;;
|
|
|
|
"C-period") rotate 90 ;;
|
|
|
|
"C-slash") rotate 180 ;;
|
2014-01-02 23:19:31 +01:00
|
|
|
esac
|
|
|
|
|