summaryrefslogtreecommitdiff
path: root/.config/nsxiv/exec/key-handler
blob: d776d0486d884b10b0b64f510a14338f47c30715 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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