mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 01:32:30 +00:00
20 lines
494 B
AppleScript
Executable File
20 lines
494 B
AppleScript
Executable File
#!/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
|