macaroni

app

Description:
The app executor is used to switch to a specified window or application.

Parent: execute, then, else

Value (simple form): string specifying process name and/or window title (checks if either match)
Value (key/value form):

# simple form
- app: (string)

# simple example
- app: notepad.exe

# key/value form
- app: (string, required)
  process: (string, optional)
  title: (string, optional)
  exclude: (string, optional)

# key/value example
- app: notepad.exe
  title: favorites.txt

EXAMPLE

# switches to an application with a matching caption
commands:
- examples:
  - Switch to Visual Studio Code
  - Switch to Chrome
  triggers:
  - phrase: switch to {application}
  execute:
  - app: '{application}'

Status: ✅ IMPLEMENTED