You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|schemaVersion | Schema version to prepare for future changes in the API. Currently there is only version 1 available. | Yes | 0.29+ |
64
64
| title | Display name of the Script Command that is shown as title in the root search. | Yes | 0.29+ |
65
-
| mode | Specifies how the script is executed and how the output is presented. [Details of the options for this parameter can be viewed here](https://github.com/raycast/script-commands/blob/README-update/Documentation/OUTPUTMODES.md)| Yes | 0.29+ |
65
+
| mode | Specifies how the script is executed and how the output is presented. [Details of the options for this parameter can be viewed here](https://github.com/raycast/script-commands/blob/README-update/documentation/OUTPUTMODES.md)| Yes | 0.29+ |
66
66
| packageName | Display name of the package that is shown as subtitle in the root search. When not provided, the name will be inferred from the script directory name. | No | 0.29+ |
67
67
| icon | Icon that is displayed in the root search. Can be an emoji, a file path (relative or full) or a remote URL (only https). Supported formats for images are PNG and JPEG. Please make sure to use small icons, recommended size - 32px. | No | 0.29+ |
68
68
| iconDark | Same as `icon`, but for dark theme. If not specified, then `icon` will be used in both themes. | No | 1.3.0+ |
69
69
| currentDirectoryPath | Path from which the script is executed. Default is the path of the script. | No | 0.29+ |
70
70
| needsConfirmation | Specify `true` if you would like to show confirmation alert dialog before running the script. Can be helpful with destructive scripts like "Quit All Apps" or "Empty Trash". Default value is `false`. | No | 0.30+ |
71
71
| refreshTime | Specify a refresh interval for inline mode scripts in seconds, minutes, hours or days. Examples: 10s, 1m, 12h, 1d. Note that the actual times can vary depending on how the OS prioritises scheduled work. The minimum refresh interval is 10 seconds, and the maximum number of refreshing inline commands is 10.| No | 0.31+ |
72
-
| argument[1...3]|[Custom arguments, see Passing Arguments page](https://github.com/raycast/script-commands/blob/README-update/Documentation/ARGUMENTS.md) for detail of how to use this field | No | 1.2.0+ |
72
+
| argument[1...3]|[Custom arguments, see Passing Arguments page](https://github.com/raycast/script-commands/blob/README-update/documentation/ARGUMENTS.md) for detail of how to use this field | No | 1.2.0+ |
73
73
| author | Define an author name to be part of the script commands documentation | No ||
74
74
| authorURL | Author social media, website, email or anything to help the users to get in touch | No ||
75
75
| description | A brief description about the script command to be presented in the documentation | No ||
76
76
77
77
### Output Mode
78
78
79
-
You can use the standard output to present messages in Raycast. Depending on the `mode`, the standard output of your scripts is differently presented.`fullOutput` and `inline` modes support ANSI Escape codes allowing to colour generated output by changing its background and foreground colour. [You can view the different output mode options as well as their various forms and colour options here.](https://github.com/raycast/script-commands/blob/README-update/Documentation/OUTPUTMODES.md)
79
+
You can use the standard output to present messages in Raycast. Depending on the `mode`, the standard output of your scripts is differently presented.`fullOutput` and `inline` modes support ANSI Escape codes allowing to colour generated output by changing its background and foreground colour. [You can view the different output mode options as well as their various forms and colour options here.](https://github.com/raycast/script-commands/blob/README-update/documentation/OUTPUTMODES.md)
0 commit comments