Adds sxiv settings

master
Jonathan Hodgson 6 years ago
parent 7b81af7679
commit 713f9df659
  1. 18
      sxiv/exec/key-handler

@ -0,0 +1,18 @@
#!/bin/sh
while read file
do
case "$1" in
"greater" )
convert -rotate 90 "$file" "$file" ;;
"less")
convert -rotate 270 "$file" "$file" ;;
"y")
echo -n "$file" | xclip -selection clipboard ;;
"g")
gimp "$file" & disown ;;
"G")
optirun gimp "$file" & disown ;;
* )
notify-send "$1"
esac
done
Loading…
Cancel
Save