summaryrefslogtreecommitdiff
path: root/config/.config/sxiv/exec/key-handler
diff options
context:
space:
mode:
authorRasmus <rasmus.luha@gmail.com>2023-04-08 00:27:03 +0300
committerRasmus <rasmus.luha@gmail.com>2023-04-08 00:27:03 +0300
commita16bdfe930d89e1a7fb354b78d16e8742118f76d (patch)
treef32aabd929a485ac24ea2b3fb1c9c9d041f27478 /config/.config/sxiv/exec/key-handler
checkers
Diffstat (limited to 'config/.config/sxiv/exec/key-handler')
-rwxr-xr-xconfig/.config/sxiv/exec/key-handler11
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