[FEAT]: Komorebic Restart #562

Closed
opened 2026-01-05 14:51:36 +01:00 by adam · 2 comments
Owner

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
adam added the enhancement label 2026-01-05 14:51:36 +01:00
adam closed this issue 2026-01-05 14:51:36 +01:00
Author
Owner

@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

^!r::
{
    RunWait(format("komorebic.exe {}", "stop"), , "Hide")
    RunWait(format("komorebic.exe {}", "start"), , "Hide")
}
@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") } ```
Author
Owner

@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.

@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.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#562