diff options
author | Rasmus <rasmus.luha@gmail.com> | 2023-04-08 00:27:03 +0300 |
---|---|---|
committer | Rasmus <rasmus.luha@gmail.com> | 2023-04-08 00:27:03 +0300 |
commit | a16bdfe930d89e1a7fb354b78d16e8742118f76d (patch) | |
tree | f32aabd929a485ac24ea2b3fb1c9c9d041f27478 /config/.config/sxiv/exec/key-handler |
checkers
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 |