summaryrefslogtreecommitdiff
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-handler9
1 files changed, 0 insertions, 9 deletions
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler
deleted file mode 100755
index 7539f88..0000000
--- a/.config/sxiv/exec/key-handler
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env bash
-
-while read -r file
-do
- case "$1" in
- "C-d") rm "$file" ;;
- "C-c") cat "$file" | xclip -sel c -t image/png ;;
- esac
-done