Skip to content

Commit

Permalink
chore(dev): begin v0.1.27-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed May 23, 2024
1 parent 3556f38 commit e46a075
Show file tree
Hide file tree
Showing 16 changed files with 144 additions and 110 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
/target
CHANGELOG.md
dummy.go
komorebi.ahk
komorebic/applications.yaml
komorebic/applications.yaml
72 changes: 36 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/common-workflows/autohotkey.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AutoHotKey
# AutoHotkey

If you would like to use Autohotkey, please make sure you have AutoHotKey v2
installed.
Expand All @@ -10,13 +10,13 @@ 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" %}
```autohotkey
{% include "./komorebi.ahk.txt" %}
```

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`.
and then start komorebi with Autohotkey by running `komorebic start --ahk`.
2 changes: 1 addition & 1 deletion docs/common-workflows/dynamic-layout-switching.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Dynamically Layout Switching
# Dynamic Layout Switching

With `komorebi` it is possible to define rules to automatically change the
layout on a specified workspace when a threshold of window containers is met.
Expand Down
20 changes: 19 additions & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ running the following command in an Administrator Terminal before installing
Set-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1
```

## Disabling Unnecessary System Animations
## Disabling unnecessary system animations

It is highly recommended that you enable the "Turn off all unnecessary animations (when possible)" option in
"Control Panel > Ease of Access > Ease of Access Centre / Make the computer easier to see" for the best performance with
Expand Down Expand Up @@ -128,3 +128,21 @@ an offline machine to install.

Once installed, proceed to get the [example configurations](example-configurations.md) (none of the commands for
first-time set up and running komorebi require an internet connection).

## Uninstallation

Before uninstalling, first run `komorebic stop --whkd` to make sure that both
the `komorebi` and `whkd` processes have been stopped.

Then, depending on whether you installed with Scoop or WinGet, run `scoop
uninstall komorebi whkd` or `winget uninstall LGUG2Z.komorebi LGUG2Z.whkd`.

Finally, you can run the following commands in a PowerShell prompt to clean up
files created by the `quickstart` command and any other runtime files:

```powershell
rm $Env:USERPROFILE\komorebi.json
rm $Env:USERPROFILE\applications.yaml
rm $Env:USERPROFILE\.config\whkdrc
rm -r -Force $Env:LOCALAPPDATA\komorebi
```
Loading

0 comments on commit e46a075

Please sign in to comment.