confOS/.config/fish/functions/trash-empty.fish
2024-11-04 17:49:02 +01:00

12 lines
424 B
Fish

function trash-empty --description "Empty the windows recycle bin."
# Get function name
set current_name $(status current-function)
# Empty trash
powershell.exe -Command "" \
"\$bin = (New-Object -ComObject Shell.Application).NameSpace(10);" \
"\$bin.items() | ForEach {" \
" Write-Host 'Deleting:' \$_.Name;" \
" Remove-Item \$_.Path -Recurse -Force;" \
"}"
end