minimizeDescription:
The minimize executor is used to minimize 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):
minimize: string, required, specifying process name and/or window title (checks if either match)title: string, optional, specifying window title (checks if specified title is contained in actual title)process: string, optional, specifying process file name, path and extension optional (checks file name and full name)exclude: string, optional, specifying process or window title exclusions (if process or title contains an exclusion, it will not be minimized)all: bool, optional, specifying if multiple windows matching the title/process/exclusions specified, they will all be minimized if true, only the first if false (default is false)# simple form
- minimize: (string)
# simple example
- minimize: notepad.exe
# key/value form
- minimize: (string, required)
process: (string, optional)
title: (string, optional)
exclude: (string, optional)
all: (boolean, optional)
# key/value example
- minimize: notepad.exe
title: favorites.txt
EXAMPLE
# minimize an app
commands:
- examples:
- minimize Visual Studio Code
- minimize Chrome
triggers:
- phrase: minimize {application}
execute:
- minimize: '{application}'
Status: ✅ IMPLEMENTED