diff options
Diffstat (limited to 'config/.config/sxiv/exec/key-handler')
-rwxr-xr-x | config/.config/sxiv/exec/key-handler | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config/.config/sxiv/exec/key-handler b/config/.config/sxiv/exec/key-handler new file mode 100755 index 0000000..db80759 --- /dev/null +++ b/config/.config/sxiv/exec/key-handler @@ -0,0 +1,11 @@ +#!/bin/bash + +CUR_WP_LOC=~/.local/scripts/data/wp.jpg + +while read file +do + case "$1" in + "w") setbg $file; cp $file $CUR_WP_LOC ;; + "r") mv $file /home/rasmus/.trash/;; + esac +done |