mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 14:40:25 +01:00
[BUG]: border implementation parameters syntax #434
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 @azinsharaf on GitHub (Jul 21, 2024).
Describe the bug
border_implementationoptions in the config file areKomorebiandWindows(first charecter is uppercase) but the help document (komorebic border-implementation --help) shows them askomorebiandwindows. And using them doesn't work.Expected behavior
Since the parameters are case sensitvie, their syntax should match between config file and help.
Operating System
komorebic checkOutputProvide the output of
komorebic check@LGUG2Z commented on GitHub (Jul 21, 2024):
Can you check if running the CLI command triggers any errors in the logs?
0f9c23b6f4/komorebi/src/process_command.rs (L1289-L1293)There is a minimum version requirement for this, but from your OS info it looks like you are above
22000🤔The casing is unrelated- JSON gets serialized/deserialized with TitleCase and the CLI sticks to lowercase to match command line conventions.
@azinsharaf commented on GitHub (Jul 21, 2024):
no erorr in the logs.
komorebic border-implementation komorebioutput:
2024-07-21T17:08:28.232937Z INFO process_event{event=FocusChange(SystemForeground, Window { hwnd: 3542614 })}: komorebi::process_event: processedkomorebic border-implementation Komorebioutput:
and in
komorebi.jsonfile:"border_implementation": "Komorebi",works fine."border_implementation": "komorebi",doesn't work.