diff options
| -rwxr-xr-x | .config/sxiv/exec/key-handler | 9 | ||||
| -rw-r--r-- | README.md | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler new file mode 100755 index 0000000..6ce159d --- /dev/null +++ b/.config/sxiv/exec/key-handler @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +while read file +do + case "$1" in + "C-d") trash-put "$file" ;; + "C-c") cat "$file" | xclip -sel c -t image/png ;; + esac +done @@ -32,6 +32,7 @@ Remember to TSInstall the languages. Currently using: * tsx * typescript * vim +* markdown ## Powerline |
