summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-05 18:34:35 -0400
committerJune McEnroe <june@causal.agency>2018-08-05 18:34:35 -0400
commit5bb96a79e76d92fa7ce9839a151a778f79d0ef06 (patch)
tree5654e13a3f2385d07d7d1e16740779513a339330
parentRefactor color initialization (diff)
downloadcatgirl-5bb96a79e76d92fa7ce9839a151a778f79d0ef06.tar.gz
catgirl-5bb96a79e76d92fa7ce9839a151a778f79d0ef06.zip
Initialize all possible color pairs
This is actually possible with use_default_colors!
-rw-r--r--ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.c b/ui.c
index 5091431..1925108 100644
--- a/ui.c
+++ b/ui.c
@@ -42,7 +42,7 @@ static void colorInit(void) {
 	start_color();
 	use_default_colors();
 	if (COLORS >= 16) {
-		for (short pair = 0; pair < 0xFF; ++pair) {
+		for (short pair = 0; pair < 0x100; ++pair) {
 			if (pair < 0x10) {
 				init_pair(1 + pair, pair, -1);
 			} else {
@@ -50,7 +50,7 @@ static void colorInit(void) {
 			}
 		}
 	} else {
-		for (short pair = 0; pair < 077; ++pair) {
+		for (short pair = 0; pair < 0100; ++pair) {
 			if (pair < 010) {
 				init_pair(1 + pair, pair, -1);
 			} else {
celeration in XJune McEnroe 2021-02-07Set colours for Xt and cwmJune McEnroe And increase XTerm internalBorder. 2021-02-07Set urgency on bell in xtermJune McEnroe 2021-02-07Add bindings for brightness controlJune McEnroe Weirdly the Fn key doesn't change how the F row registers... I wonder if I can do something about that. 2021-02-07Set X key repeat rateJune McEnroe 2021-02-07Bump font size to 12June McEnroe 11 is what I use on macOS, but I feel like my eyes are working harder here. 2021-02-07Fully configure and rebind cwmJune McEnroe This is sort of a mix of trying to emulate macOS somewhat for my muscle memory and just rebinding some of the cwm defaults to use 4- rather than M-. 2021-02-07Add BintiJune McEnroe 2021-02-07Finish configuring xtermJune McEnroe 2021-02-06Enable tapping, reverse scroll, set scaling in wsconsctlJune McEnroe 2021-02-06Set root window to black on purple snowJune McEnroe 2021-02-06Add xmodmap configurationJune McEnroe 2021-02-06Add initial OpenBSD X configurationJune McEnroe cwm still needs a lot more rebinding, and I need to actually look at its other options. xterm definitely still needs some configuration, but I at least managed to get it to use a decent looking font. Very happy that OpenBSD includes Luxi Mono, which is what my usual font, Go Mono, is based on anyway. Still missing is xmodmap and such. 2021-02-06Add xterm output to schemeJune McEnroe