aboutsummaryrefslogtreecommitdiff
path: root/.config/sxiv/exec/key-handler
diff options
context:
space:
mode:
Diffstat (limited to '.config/sxiv/exec/key-handler')
-rwxr-xr-x.config/sxiv/exec/key-handler15
1 files changed, 0 insertions, 15 deletions
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler
deleted file mode 100755
index 443916d..0000000
--- a/.config/sxiv/exec/key-handler
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-while read file
-do
- case "$1" in
- "C-d")
- mv "$file" ~/.trash ;;
- "C-r")
- convert -rotate 90 "$file" "$file" ;;
- "C-c")
- echo -n "$file" | xclip -selection clipboard ;;
- "C-w")
- xwallpaper --zoom "$file" ;;
- esac
-done