[raycast] Remove

This commit is contained in:
2025-12-13 13:28:23 +00:00
parent 04206a5471
commit b2b326544c
5 changed files with 0 additions and 107 deletions

View File

@@ -1,19 +0,0 @@
#!/usr/bin/osascript
# Required parameters:
# @raycast.author Jax0rz
# @authorURL https://github.com/Jax0rz
# @raycast.schemaVersion 1
# @raycast.title Move Downloads to Trash
# @raycast.mode silent
# @raycast.packageName System
# @raycast.needsConfirmation true
# Optional parameters:
# @raycast.icon images/move-downloads-to-trash.png
tell application "Finder"
set allDownloads to every item of folder (path to downloads folder as text)
move allDownloads to trash
log ""
end tell