From 271534e115e5915231c99df287bbfe396185924d Mon Sep 17 00:00:00 2001 From: Horu <73709188+HigherOrderLogic@users.noreply.github.com> Date: Sun, 17 Aug 2025 16:28:24 +1000 Subject: Add ConfigLoaded event to IPC, option to disable built-in notification (#1829) * feat: config reload ipc event * cleanups * Rename and move the new config option * rename to ConfigLoaded and emit at connection --------- Co-authored-by: Ivan Molodetskikh --- wiki/Configuration:-Miscellaneous.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'wiki') diff --git a/wiki/Configuration:-Miscellaneous.md b/wiki/Configuration:-Miscellaneous.md index 3eba0a31..f2d1010a 100644 --- a/wiki/Configuration:-Miscellaneous.md +++ b/wiki/Configuration:-Miscellaneous.md @@ -49,6 +49,10 @@ hotkey-overlay { skip-at-startup hide-not-bound } + +config-notification { + disable-failed +} ``` ### `spawn-at-startup` @@ -277,3 +281,18 @@ hotkey-overlay { ``` You can customize which binds the hotkey overlay shows using the [`hotkey-overlay-title` property](./Configuration:-Key-Bindings.md#custom-hotkey-overlay-titles). + +### `config-notification` + +Since: next release + +Settings for the config created/failed notification. + +Set the `disable-failed` flag to disable the "Failed to parse the config file" notification. +For example, if you have a custom one. + +```kdl +config-notification { + disable-failed +} +``` -- cgit