mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-17 23:13:55 +01:00
This commit adds a new StateQuery variant, FocusedContainerKind, which will will return None if there is not focused container on the current workspace (ie. it is empty), Single if the focused container contains a single window, or Stack if the focused container contains more than one window.
20 lines
682 B
Markdown
20 lines
682 B
Markdown
# window-hiding-behaviour
|
|
|
|
```
|
|
Set the window behaviour when switching workspaces / cycling stacks
|
|
|
|
Usage: komorebic.exe window-hiding-behaviour <HIDING_BEHAVIOUR>
|
|
|
|
Arguments:
|
|
<HIDING_BEHAVIOUR>
|
|
Possible values:
|
|
- hide: END OF LIFE FEATURE: Use the SW_HIDE flag to hide windows when switching workspaces (has issues with Electron apps)
|
|
- minimize: Use the SW_MINIMIZE flag to hide windows when switching workspaces (has issues with frequent workspace switching)
|
|
- cloak: Use the undocumented SetCloak Win32 function to hide windows when switching workspaces
|
|
|
|
Options:
|
|
-h, --help
|
|
Print help (see a summary with '-h')
|
|
|
|
```
|