summaryrefslogtreecommitdiff
path: root/.config/sxiv
diff options
context:
space:
mode:
Diffstat (limited to '.config/sxiv')
-rwxr-xr-x.config/sxiv/exec/key-handler4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler
index 303ea63..d776d04 100755
--- a/.config/sxiv/exec/key-handler
+++ b/.config/sxiv/exec/key-handler
@@ -5,7 +5,7 @@ do
case "$1" in
"d")
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
- "w")
- genwall $file
+ "w") genwall $file;;
+ "c") cat "$file" | xclip -sel c -t image/png && notify-send "$file Copied ";;
esac
done