diff options
Diffstat (limited to '.scripts/trashy')
-rwxr-xr-x | .scripts/trashy | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.scripts/trashy b/.scripts/trashy new file mode 100755 index 0000000..3318e41 --- /dev/null +++ b/.scripts/trashy @@ -0,0 +1,5 @@ +#!/bin/sh + +trashfiledir=$(find $HOME -type f -o -type d | dmenu -i -p "File to be deleted:" -l 15| awk '{printf('\"%s\"\n', $0);}') + +trash-put $trashfiledir |