diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-10-20 13:55:26 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-10-20 13:55:26 -0600 |
commit | ed5d75083c5311d51e6a8977494590bada117ce2 (patch) | |
tree | 063221522def68ca518201f833519f519ac39275 | |
parent | 507760bbff6d87f4d9c8371ebe50abd389153dd0 (diff) | |
download | dwm-ed5d75083c5311d51e6a8977494590bada117ce2.tar dwm-ed5d75083c5311d51e6a8977494590bada117ce2.tar.gz dwm-ed5d75083c5311d51e6a8977494590bada117ce2.tar.bz2 |
fixed zoom and colors
-rw-r--r-- | config.h | 4 | ||||
-rwxr-xr-x | dwm | bin | 62096 -> 62128 bytes |
2 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "JetBrains Mono:size=12" }; static const char dmenufont[] = "JetBrains Mono:size=12"; -static const char black[] = "#000000"; +static const char col_black[] = "#000000"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; @@ -23,7 +23,7 @@ static const unsigned int gappx = 6; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_nord4, col_gray1, col_gray1 }, + [SchemeNorm] = { col_nord4, col_black, col_gray1 }, [SchemeSel] = { col_nord4, col_gray2, col_gray1 }, }; |