From 2d6ff0708fecc053cecdbf7ed01d8781ef316cd1 Mon Sep 17 00:00:00 2001 From: alex-ds13 <145657253+alex-ds13@users.noreply.github.com> Date: Wed, 26 Mar 2025 17:54:48 +0000 Subject: [PATCH] fix(docs): borders are enabled by default --- komorebi/src/static_config.rs | 2 +- schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/komorebi/src/static_config.rs b/komorebi/src/static_config.rs index 7cf7d2f7..9947e50b 100644 --- a/komorebi/src/static_config.rs +++ b/komorebi/src/static_config.rs @@ -437,7 +437,7 @@ pub struct StaticConfig { #[serde(skip_serializing_if = "Option::is_none")] #[serde(alias = "active_window_border_offset")] pub border_offset: Option, - /// Display an active window border (default: false) + /// Display an active window border (default: true) #[serde(skip_serializing_if = "Option::is_none")] #[serde(alias = "active_window_border")] pub border: Option, diff --git a/schema.json b/schema.json index c9ef0649..0e2f5235 100644 --- a/schema.json +++ b/schema.json @@ -153,7 +153,7 @@ } }, "border": { - "description": "Display an active window border (default: false)", + "description": "Display an active window border (default: true)", "type": "boolean" }, "border_colours": {