mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 14:40:25 +01:00
[BUG]: High CPU and Disk usage #436
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @topazrn on GitHub (Jul 24, 2024).
Describe the bug

CPU usage is around 20% on my i3-12100 and disk usage is 4MB/s while idle. I'm not sure if this is normal.
I have made sure that I did not enable the custom FFM implementation because if I were to use it, my CPU usage would double.

To Reproduce
Steps to reproduce the behavior:
komorebic start --ahk.Expected behavior
CPU usage I think should be 0% on idle. I'm also not sure what file is it reading constantly.
Operating System
komorebic checkOutputAdditional context
I am using the example AHK config from the docs. But I think AHK is not the problem here because the CPU and disk usage are undiscernable between AHK and whkd.
@LGUG2Z commented on GitHub (Jul 24, 2024):
The high disk IO suggests that there are probably a bunch of errors being written to the log file repeatedly. Can you run
komorebi.exein the foreground and share the log output?@topazrn commented on GitHub (Jul 24, 2024):
Aha! You are right! Turns out it has been repeatedly throwing these errors:
I was following amnweb's dotfiles and it seems removing
"border_implementation": "Windows",fixes the issue.I should've checked the logs first before writing an issue. Thanks for the help!
@LGUG2Z commented on GitHub (Jul 24, 2024):
So this option isn't supported on Win10 and there are some checks in place to stop people from trying to enable it once komorebi is running, but I think we need to default away from this option on startup if it is selected to avoid the experience you had 🤔