From 4000a93c9d0316d828b702aedfcf82530ffda940 Mon Sep 17 00:00:00 2001 From: Lars Berger Date: Sun, 17 Sep 2023 19:49:22 +0800 Subject: [PATCH] change default focus borders --- GlazeWM.Domain/UserConfigs/FocusBorderConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GlazeWM.Domain/UserConfigs/FocusBorderConfig.cs b/GlazeWM.Domain/UserConfigs/FocusBorderConfig.cs index 50e6d233f..ec0f15708 100644 --- a/GlazeWM.Domain/UserConfigs/FocusBorderConfig.cs +++ b/GlazeWM.Domain/UserConfigs/FocusBorderConfig.cs @@ -5,12 +5,12 @@ public class FocusBordersConfig /// /// Border of the focused window. /// - public FocusBorder Active { get; set; } = new() { Enabled = true, Color = "#7CE38B" }; + public FocusBorder Active { get; set; } = new() { Enabled = false, Color = "#0000ff" }; /// /// Border of non-focused windows. /// - public FocusBorder Inactive { get; set; } = new() { Enabled = false }; + public FocusBorder Inactive { get; set; } = new() { Enabled = false, Color = "#ff0000" }; } public class FocusBorder