From 852f7ef559e24551062c327fd65efd9b5f52ddce Mon Sep 17 00:00:00 2001 From: june <145085206+succumbs@users.noreply.github.com> Date: Mon, 12 Feb 2024 05:42:28 -0500 Subject: [PATCH] fix invalid defaults in variables (#469) the `col.inactive_border` and `col.active_border` default values are switched --- pages/Configuring/Variables.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/Configuring/Variables.md b/pages/Configuring/Variables.md index 62c3446..598183d 100644 --- a/pages/Configuring/Variables.md +++ b/pages/Configuring/Variables.md @@ -53,8 +53,8 @@ SHIFT CAPS CTRL/CONTROL ALT MOD2 MOD3 SUPER/WIN/LOGO/MOD4 MOD5 | gaps_in | gaps between windows | int | 5 | | gaps_out | gaps between windows and monitor edges | int | 20 | | gaps_workspaces | gaps between workspaces. Stacks with gaps_out. | int | 0 | -| col.inactive_border | border color for inactive windows | gradient | 0xffffffff | -| col.active_border | border color for the active window | gradient | 0xff444444 | +| col.inactive_border | border color for inactive windows | gradient | 0xff444444 | +| col.active_border | border color for the active window | gradient | 0xffffffff | | col.nogroup_border | inactive border color for window that cannot be added to a group (see `denywindowfromgroup` dispatcher) | gradient | 0xffffaaff | | col.nogroup_border_active | active border color for window that cannot be added to a group | gradient | 0xffff00ff | | cursor_inactive_timeout | in seconds, after how many seconds of cursor's inactivity to hide it. Set to `0` for never. | int | 0 |