macaroni

maximize

Description:
The maximize executor is used to maximize 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
- maximize: (string)

# simple example
- maximize: notepad.exe

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

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

EXAMPLE

# maximizes an app
commands:
- examples:
  - maximize Visual Studio Code
  - maximize Chrome
  triggers:
  - phrase: maximize {application}
  execute:
  - maximize: '{application}'

Status: ✅ IMPLEMENTED