forked from raycast/script-commands
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae7618e
commit b6f3b84
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/osascript | ||
|
||
# Raycast Script Command Template | ||
# | ||
# Duplicate this file and remove ".template." from the filename to get started. | ||
# See full documentation here: https://github.com/raycast/script-commands | ||
# | ||
# Required parameters: | ||
# @raycast.schemaVersion 1 | ||
# @raycast.title My First Script | ||
# @raycast.mode fullOutput | ||
# @raycast.packageName Raycast Scripts | ||
# | ||
# Optional parameters: | ||
# @raycast.icon 🤖 | ||
# @raycast.currentDirectoryPath ~ | ||
# @raycast.needsConfirmation false | ||
# | ||
# Documentation: | ||
# @raycast.description Write a nice and descriptive summary about your script command here | ||
# @raycast.author Your name | ||
# @raycast.authorURL An URL for one of your social medias | ||
|
||
do shell script "echo Hello from My First Script" |