Skip to content

Commit

Permalink
change default focus borders
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Sep 17, 2023
1 parent 2aeaffb commit 4000a93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GlazeWM.Domain/UserConfigs/FocusBorderConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ public class FocusBordersConfig
/// <summary>
/// Border of the focused window.
/// </summary>
public FocusBorder Active { get; set; } = new() { Enabled = true, Color = "#7CE38B" };
public FocusBorder Active { get; set; } = new() { Enabled = false, Color = "#0000ff" };

/// <summary>
/// Border of non-focused windows.
/// </summary>
public FocusBorder Inactive { get; set; } = new() { Enabled = false };
public FocusBorder Inactive { get; set; } = new() { Enabled = false, Color = "#ff0000" };
}

public class FocusBorder
Expand Down

0 comments on commit 4000a93

Please sign in to comment.