Skip to content

Commit

Permalink
add script template for AppleScript
Browse files Browse the repository at this point in the history
  • Loading branch information
crstauf authored and thomaspaulmann committed Dec 11, 2020
1 parent ae7618e commit b6f3b84
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions templates/script-command.template.applescript
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"

0 comments on commit b6f3b84

Please sign in to comment.