A Simple X Image Viewer
 
 
 
 
 
 

33 lines
1.2 KiB

  1. #!/bin/sh
  2. # Example for $XDG_CONFIG_HOME/sxiv/exec/key-handler
  3. # Called by sxiv(1) after the external prefix key (C-x by default) is pressed.
  4. # The next key combo is passed as its first argument, followed by the paths of
  5. # all marked images or the path of the current image, if no image is marked.
  6. # sxiv(1) blocks until this script terminates. It then checks which images
  7. # have been modified and reloads them.
  8. # The key combo argument has the following form: "[C-][M-][S-]KEY",
  9. # where C/M/S indicate Ctrl/Meta(Alt)/Shift modifier states and KEY is the X
  10. # keysym as listed in /usr/include/X11/keysymdef.h without the "XK_" prefix.
  11. rotate() {
  12. case "$(file -b -i "$2")" in
  13. image/jpeg*) jpegtran -rotate "$1" -copy all -outfile "$2" "$2" ;;
  14. *) mogrify -rotate "$1" "$2" ;;
  15. esac
  16. }
  17. key="$1"
  18. shift
  19. case "$key" in
  20. "C-c") echo -n "$@" | xsel -i ;;
  21. "C-e") for file in "$@"; do urxvt -bg "#444" -fg "#eee" -sl 0 -title "$file" -e sh -c "exiv2 pr -q -pa '$file' | less" & done ;;
  22. "C-g") gimp "$@" & ;;
  23. "C-comma") for file in "$@"; do rotate 270 "$file"; done ;;
  24. "C-period") for file in "$@"; do rotate 90 "$file"; done ;;
  25. "C-slash") for file in "$@"; do rotate 180 "$file"; done ;;
  26. esac