diff options
Diffstat (limited to '.config/sxiv')
-rwxr-xr-x | .config/sxiv/exec/key-handler | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler new file mode 100755 index 0000000..50dcfc7 --- /dev/null +++ b/.config/sxiv/exec/key-handler @@ -0,0 +1,14 @@ +#!/bin/sh + +# 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. + +case "$1" in +"y") + echo -n "$2" | xclip -selection clipboard ;; +"C-d") + rm "$2" ;; +"g") + gimp "$2" & ;; +esac |