feat(wm): add new cmd to set active border offset

This commit introduces a new command, active-window-border-offset, which
allows the user to offset the starting position of the active window
border, thereby allowing for thicker or thinner active window borders,
when used in conjunction with the active-window-border-width command.

resolve #232
This commit is contained in:
LGUG2Z
2022-12-19 19:00:37 -08:00
parent 00477e2696
commit 4ee4d199a0
6 changed files with 47 additions and 0 deletions

View File

@@ -344,6 +344,10 @@ ActiveWindowBorderWidth(width) {
RunWait, komorebic.exe active-window-border-width %width%, , Hide
}
ActiveWindowBorderOffset(offset) {
RunWait, komorebic.exe active-window-border-offset %offset%, , Hide
}
FocusFollowsMouse(boolean_state, implementation) {
RunWait, komorebic.exe focus-follows-mouse %boolean_state% --implementation %implementation%, , Hide
}