about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2025-10-28 21:58:44 -0400
committerJune McEnroe <june@causal.agency>2025-10-28 21:58:44 -0400
commit38dc6a301914efd34f9a57cf75e4d0dae8a529fc (patch)
tree89ac77f4eb42135f986bfced3621f2e76b50f5f6
parentAllow colour hashing to pick white (diff)
downloadcatgirl-38dc6a301914efd34f9a57cf75e4d0dae8a529fc.tar.gz
catgirl-38dc6a301914efd34f9a57cf75e4d0dae8a529fc.zip
Change default hashBound to 15 HEAD master
Maybe people will complain less. Possibly. Maybe?
-rw-r--r--catgirl.115
-rw-r--r--chat.c2
2 files changed, 10 insertions, 7 deletions
diff --git a/catgirl.1 b/catgirl.1
index 67bfdab..9f8ceeb 100644
--- a/catgirl.1
+++ b/catgirl.1
@@ -128,14 +128,17 @@ will randomize the chosen colours,
 in case you don't like the ones
 chosen for yourself or your crush.
 .Pp
-The default is 0,75,
-which uses colours
-in the 256-colour terminal set.
-To use only colours
-from the 16-colour terminal set,
-use 0,15.
+The default is 0,15,
+which uses only colours
+from the 16-colour terminal set.
+A reasonable option
+using the 256-colour terminal set
+might be 0,75.
 To disable nick and channel colours,
 use 0,0.
+To use bright white
+for all nicks and channels,
+use 0,1.
 .
 .It Fl I Ar pattern | Cm highlight Ar pattern
 Add a case-insensitive message highlight pattern,
diff --git a/chat.c b/chat.c
index b7743e8..755bd24 100644
--- a/chat.c
+++ b/chat.c
@@ -125,7 +125,7 @@ static void utilRead(void) {
 }
 
 uint32_t hashInit;
-uint32_t hashBound = 75;
+uint32_t hashBound = 15;
 
 static void parseHash(char *str) {
 	hashInit = strtoul(str, &str, 0);