summaryrefslogtreecommitdiff
path: root/.config/sxiv
diff options
context:
space:
mode:
Diffstat (limited to '.config/sxiv')
-rwxr-xr-x.config/sxiv/exec/key-handler11
1 files changed, 0 insertions, 11 deletions
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler
deleted file mode 100755
index 981eb8e..0000000
--- a/.config/sxiv/exec/key-handler
+++ /dev/null
@@ -1,11 +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 ;;
- "C-w") xwallpaper --maximize "$file" ;;
- "C-z") mv "$file" /media/hdd/pics/wallpaper/
- esac
-done