remove sxiv

This commit is contained in:
krolyxon 2023-02-11 11:14:29 +05:30
parent 248da69e34
commit 2679b754a6
1 changed files with 0 additions and 11 deletions

View File

@ -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