runDescription:
The run executor is used to start a new application or process.
Parent: execute, then, else
Value (simple form): string specifying process name or command
Value (key/value form):
run: string, required, specifying process, command, or uri to executionarguments: string, optional, specyfing additional arguments for the process or command# simple form
- run: (string)
# simple example
- run: notepad.exe
# key/value form
- run: (string, required)
arguments: (string, optional)
# key/value example
- run: notepad.exe
arguments: '{folders.desktop}\favorites.txt'
EXAMPLE:
- name: search google for anything
triggers:
- google {anything}
execute:
- run: https://google.com/search?q={anything}
Additional information:
command or process specified application must be accessible via PATH environment variable.command or process cannot have arguments inline.Status: ✅ IMPLEMENTED!
Consider: Utilize SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths enabling run: notepad favorites.txt