Originally created by @ghost on GitHub (Jan 18, 2025).
Sponsorship Information
GitHub Sponsors
Suggestion
A suggestion to add a shortcut to the quickstart whkd config
# Restart Komorebi
alt + shift + r : komorebic stop --bar --whkd; komorebic start --bar --whkd;
Docking and undocking my laptop causes komorebi and bar to go wonky and this helps me
Alternatives Considered
Implementing a true komorebic restart command.
Possibly that maintains the flags used with komorebic start
Originally created by @ghost on GitHub (Jan 18, 2025).
### Sponsorship Information
GitHub Sponsors
### Suggestion
A suggestion to add a shortcut to the quickstart whkd config
```
# Restart Komorebi
alt + shift + r : komorebic stop --bar --whkd; komorebic start --bar --whkd;
```
Docking and undocking my laptop causes komorebi and bar to go wonky and this helps me
### Alternatives Considered
Implementing a true komorebic restart command.
Possibly that maintains the flags used with komorebic start
@gamberoillecito commented on GitHub (Jan 22, 2025):
I am having your exact issue and created this in autohotkey. Not super clean but it works very well
```ahk
^!r::
{
RunWait(format("komorebic.exe {}", "stop"), , "Hide")
RunWait(format("komorebic.exe {}", "start"), , "Hide")
}
```
Upon further reflection I don't think I'll add this to the example config; this issue will show up in the search now if someone is looking to bind a key to restart komorebi and since there are both AHK and whkd examples here, I think that is enough.
@LGUG2Z commented on GitHub (Jan 23, 2025):
Upon further reflection I don't think I'll add this to the example config; this issue will show up in the search now if someone is looking to bind a key to restart komorebi and since there are both AHK and whkd examples here, I think that is enough.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @ghost on GitHub (Jan 18, 2025).
Sponsorship Information
GitHub Sponsors
Suggestion
A suggestion to add a shortcut to the quickstart whkd config
Docking and undocking my laptop causes komorebi and bar to go wonky and this helps me
Alternatives Considered
Implementing a true komorebic restart command.
Possibly that maintains the flags used with komorebic start
@gamberoillecito commented on GitHub (Jan 22, 2025):
I am having your exact issue and created this in autohotkey. Not super clean but it works very well
@LGUG2Z commented on GitHub (Jan 23, 2025):
Upon further reflection I don't think I'll add this to the example config; this issue will show up in the search now if someone is looking to bind a key to restart komorebi and since there are both AHK and whkd examples here, I think that is enough.