summaryrefslogtreecommitdiff
path: root/.config/sxiv
diff options
context:
space:
mode:
authorkrolyxon <krolyxon@tutanota.com>2022-06-27 11:21:18 +0530
committerkrolyxon <krolyxon@tutanota.com>2022-06-27 11:21:18 +0530
commit9ac40bd36b02ed118fdd1b78f81974c2520c4d8e (patch)
treead3f6bd46c28d713689cd40edef29a4e2b8fead3 /.config/sxiv
parenta27848fc98289795e6e4e61322f3e7d425a707b3 (diff)
changes
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