diff options
| author | podit <podit@podit.dev> | 2023-02-14 23:09:43 +0000 |
|---|---|---|
| committer | podit <podit@podit.dev> | 2023-02-14 23:09:43 +0000 |
| commit | 5c5948aaf9d665989713a31d6ab6015d10e2338d (patch) | |
| tree | c6d21b1d6179b029eebfe72920590d03e822b4bc /config.def.h | |
| parent | 138dacf0b9bb331704ae031aa1f87bf156899fb0 (diff) | |
| download | dwlb-5c5948aaf9d665989713a31d6ab6015d10e2338d.tar.gz | |
fix typo in urgtextcolor
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 8a27b30..d554597 100644 --- a/config.def.h +++ b/config.def.h @@ -15,4 +15,4 @@ static pixman_color_t activecolor = { .red = 0x0000, .green = 0x5555, .blue = 0x static pixman_color_t inactivecolor = { .red = 0x2222, .green = 0x2222, .blue = 0x2222, .alpha = 0xffff, }; static pixman_color_t textcolor = { .red = 0xeeee, .green = 0xeeee, .blue = 0xeeee, .alpha = 0xffff, }; static pixman_color_t urgbgcolor = { .red = 0xeeee, .green = 0xeeee, .blue = 0xeeee, .alpha = 0xffff, }; -static pixman_color_t urgtextcolor = { .red = 2222, .green = 0x2222, .blue = 0x2222, .alpha = 0xffff, }; +static pixman_color_t urgtextcolor = { .red = 0x2222, .green = 0x2222, .blue = 0x2222, .alpha = 0xffff, }; |