diff options
author | Bert Münnich <ber.t@posteo.de> | 2019-01-01 13:47:46 +0100 |
---|---|---|
committer | Bert Münnich <ber.t@posteo.de> | 2019-01-01 13:47:46 +0100 |
commit | b83d4fa1bfbd7440ba4dd18bdc04b409db7114c9 (patch) | |
tree | 460289d15331296c1ec0e4195d679afd259e5698 | |
parent | 71c5766d896df4f7e3fffb51d77c840ca68be033 (diff) |
Add rawtherapee entry to key-handler
-rwxr-xr-x | exec/key-handler | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/exec/key-handler b/exec/key-handler index 9202dd8..3b50e4c 100755 --- a/exec/key-handler +++ b/exec/key-handler @@ -27,6 +27,7 @@ case "$1" in "C-c") while read file; do xclip -selection clipboard -target image/png "$file"; done ;; "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 & ;; +"C-r") while read file; do rawtherapee "$file" & done ;; "C-comma") rotate 270 ;; "C-period") rotate 90 ;; "C-slash") rotate 180 ;; |