Skip to content

Instantly share code, notes, and snippets.

@sunnyyoung
Created August 10, 2022 02:44
Show Gist options
  • Select an option

  • Save sunnyyoung/44bd981284c893d9e06e868fe1fbd585 to your computer and use it in GitHub Desktop.

Select an option

Save sunnyyoung/44bd981284c893d9e06e868fe1fbd585 to your computer and use it in GitHub Desktop.
Raycast script command: Move all items from Donwloads to Trash.
#!/usr/bin/osascript
# @raycast.schemaVersion 1
# @raycast.title Clear Downloads
# @raycast.icon ๐Ÿšฎ
# @raycast.mode silent
tell application "Finder"
set targets to every item of folder (path to downloads folder as text)
delete targets
end tell
return
@andrewjmead
Copy link
Copy Markdown

๐Ÿ™

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment