summaryrefslogtreecommitdiff
path: root/.config/sxiv
diff options
context:
space:
mode:
authorkrolyxon <krolyxon@tutanota.com>2023-02-11 11:14:29 +0530
committerkrolyxon <krolyxon@tutanota.com>2023-02-11 11:14:29 +0530
commit2679b754a682fbf05d5483cf6c57a28618e60a49 (patch)
tree2a91a54ecd82034f3953acd96f0c85dfad94830c /.config/sxiv
parent248da69e3450dec0d8a5a483060e612063fcce3f (diff)
remove sxiv
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 d776d04..0000000
--- a/.config/sxiv/exec/key-handler
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-while read file
-do
- case "$1" in
- "d")
- [ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
- "w") genwall $file;;
- "c") cat "$file" | xclip -sel c -t image/png && notify-send "$file Copied ";;
- esac
-done