-
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(mkdocs): add updates for v0.1.28 features
- Loading branch information
Showing
12 changed files
with
242 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# border-implementation | ||
|
||
``` | ||
Set the border implementation | ||
Usage: komorebic.exe border-implementation <STYLE> | ||
Arguments: | ||
<STYLE> | ||
Desired border implementation | ||
Possible values: | ||
- komorebi: Use the adjustable komorebi border implementation | ||
- windows: Use the thin Windows accent border implementation | ||
Options: | ||
-h, --help | ||
Print help (see a summary with '-h') | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# border-style | ||
|
||
``` | ||
Set the border style | ||
Usage: komorebic.exe border-style <STYLE> | ||
Arguments: | ||
<STYLE> | ||
Desired border style | ||
Possible values: | ||
- system: Use the system border style | ||
- rounded: Use the Windows 11-style rounded borders | ||
- square: Use the Windows 10-style square borders | ||
Options: | ||
-h, --help | ||
Print help (see a summary with '-h') | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# clear-all-workspace-rules | ||
|
||
``` | ||
Remove all application association rules for all workspaces | ||
Usage: komorebic.exe clear-all-workspace-rules | ||
Options: | ||
-h, --help | ||
Print help | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# clear-named-workspace-rules | ||
|
||
``` | ||
Remove all application association rules for a named workspace | ||
Usage: komorebic.exe clear-named-workspace-rules <WORKSPACE> | ||
Arguments: | ||
<WORKSPACE> | ||
Name of a workspace | ||
Options: | ||
-h, --help | ||
Print help | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# clear-workspace-rules | ||
|
||
``` | ||
Remove all application association rules for a workspace by monitor and workspace index | ||
Usage: komorebic.exe clear-workspace-rules <MONITOR> <WORKSPACE> | ||
Arguments: | ||
<MONITOR> | ||
Monitor index (zero-indexed) | ||
<WORKSPACE> | ||
Workspace index on the specified monitor (zero-indexed) | ||
Options: | ||
-h, --help | ||
Print help | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Animations | ||
|
||
If you would like to add window movement animations, ensure the following options are | ||
defined in the `komorebi.json` configuration file. | ||
|
||
```json | ||
{ | ||
"animation": { | ||
"enabled": true | ||
} | ||
} | ||
``` | ||
|
||
Window movement animations only apply to actions taking place within the same monitor | ||
workspace. | ||
|
||
You can optionally set a custom duration in ms with `animation.duration` (default: `250`), | ||
a custom style with `animation.style` (default: `Linear`), and a custom FPS value with | ||
`animation.fps` (default: `60`). | ||
|
||
It is important to note that higher `fps` and a longer `duration` settings will result | ||
in increased CPU usage. | ||
|
||
This feature is not considered stable, and you may encounter visual artifacts | ||
from time to time. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.