muh eunuchs philosophy

This commit is contained in:
Luke Smith 2019-01-12 21:56:36 -05:00
parent c0b24e15dc
commit ea294ff0ac

View file

@ -2,10 +2,7 @@
while read file
do
case "$1" in
"w")
cp "$file" ~/.config/wall.png &&
setbg
notify-send -i "$HOME/.config/wall.png" "Wallpaper changed." ;;
"w") setbg "$file" & ;;
"c")
[ -z "$destdir" ] && destdir="$(sed "s/\s.*#.*$//;/^\s*$/d" ~/.bmdirs | awk '{print $2}' | dmenu -l 20 -i -p "Copy file(s) to where?" | sed "s|~|$HOME|g")"
[ -z "$destdir" ] && exit
@ -30,7 +27,6 @@ do
notify-send "$(readlink -f "$file") copied to clipboard" & ;;
"d")
[ "$(printf "No\\nYes" | dmenu -i -p "Really delete $file?")" = "Yes" ] && rm "$file" && notify-send "$file deleted." ;;
"G")
gimp "$file" & ;;
"g") ifinstalled gimp && gimp "$file" & ;;
esac
done