mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-18 07:23:57 +01:00
This commit renames a number of border-related code refs, removing the ActiveWindow prefix since these borders are no longer just for the active window. Aliases have been added to preserve backwards compat for existing configs. An example AHK configuration file has been added to the Common Workflows section of the docs site. A link to the docs site has been added to the output of komorebic start. A note has been added recommending that users disable system animations for the best experience in the Getting Started guide.
22 lines
810 B
Markdown
22 lines
810 B
Markdown
# AutoHotKey
|
|
|
|
If you would like to use Autohotkey, please make sure you have AutoHotKey v2
|
|
installed.
|
|
|
|
Generally, users who opt for AHK will have specific needs that can only be
|
|
addressed by the advanced functionality of AHK, and so they are assumed to be
|
|
able to craft their own configuration files.
|
|
|
|
If you would like to try out AHK, here is a simple sample configuration which
|
|
largely matches the `whkdrc` sample configuration.
|
|
|
|
```
|
|
{% include "../komorebi.ahk" %}
|
|
```
|
|
|
|
By default, the `komorebi.ahk` file should be located in the `$Env:USERPROFILE`
|
|
directory, however, if `$Env:KOMOREBI_CONFIG_HOME` is set, it should be located
|
|
there.
|
|
|
|
Once the file is in place, you can stop komorebi and whkd by running `komorebic stop --whkd`,
|
|
and then start komorebi with Autohotkey by running `komorebic start --ahk`. |