35
35
* could interpret this but it doesn't seem to be available
36
36
* anymore so we use a different interface.
37
37
*
38
- * References :
38
+ * Reference :
39
39
* http://en.wikipedia.org/wiki/ANSI_escape_code
40
- * http://academic.evergreen.edu/projects/biophysics/technotes/program/ansi_esc.htm
41
40
*
42
41
*
43
42
44
43
>>>> READ THIS PART!!! <<<<
45
44
46
45
*
47
46
*
48
- * Problem: The ANSI escape sequences, used on Linux, allow 8 basic colors.
47
+ * Problem: Years ago, when I started on this...
48
+ *
49
+ * The ANSI escape sequences, used for text colors, allowed 8 basic colors.
49
50
* Unfortunately, white is not one of them. We only have dark
50
51
* white, also known as light gray. To get brighter colors,
51
52
* we need to apply an attribute. On some systems, the bold
52
53
* attribute produces a brighter color rather than a bold font.
53
54
* On other systems, we need to use the blink attribute to get
54
55
* bright colors, including white. However on others, blink
55
56
* does actually produce blinking characters.
56
- *
57
- * Several people have also complained that bright green is
58
- * very hard to read against a light background. The current
59
- * implementation does not allow easy user customization of colors.
60
57
*
61
58
* Previously, the only option was to put "-t 0" on the command
62
59
* line to disable all text color. This is more readable but
68
65
* It always sends the same color control codes rather than
69
66
* detecting the terminal type and adjusting its behavior.
70
67
*
68
+ * Version 1.6:
69
+ *
71
70
* For a long time, there was a compile time distinction between
72
71
* ARM (e.g. Raspberry Pi) and other platforms. With the arrival
73
72
* of Raspbian Buster, we get flashing and the general Linux settings
74
73
* work better.
75
74
*
76
75
* Since there doesn't seem to be a single universal solution,
77
76
* the text color option will now be allowed to have multiple values.
77
+ * Several people have also complained that bright green is
78
+ * very hard to read against a light background so only dark green will be used.
78
79
*
79
80
*--------------------------------------------------------------------*/
80
81
92
93
93
94
#else /* Linux, BSD, Mac OSX */
94
95
95
-
96
96
// Alternative 1:
97
97
98
+ // Using RGB colors - New in version 1.6.
99
+ // Since version 1.2, we've been using RGB to set the background to white.
100
+ // From this we can deduce that pretty much everyone recognizes RGB colors by now.
101
+ // The only known exception was PuTTY 0.70 and this has been rectified in 0.71.
102
+ // Instead of picking 1 of 8 colors, and using some attribute to get bright, just specify it directly.
103
+ // This should eliminate the need to reset the background after messing with the bright/bold/blink
104
+ // attributes to get more than 8 colors.
105
+
106
+
107
+ // Alternative 2:
108
+
98
109
// Was new in version 1.2, as suggested by IW2DHW.
99
110
// Tested with gnome-terminal and xterm.
100
111
// Raspbian Buster LXTerminal also likes this.
101
- // (Should go back and check earlier versions - at one time I intentionally made ARM different.)
112
+ // There was probably an issue with an earlier release because I intentionally made ARM different at one time.
102
113
103
114
// Here we are using the RGB color format to set the background.
104
- // Alas, PuTTY doesn't recognize the RGB format so the background is not set.
115
+ // PuTTY 0.70 doesn't recognize the RGB format so the background is not set.
116
+ // Instead of complaining about it, just upgrade to PuTTY 0.71.
105
117
106
118
107
- // Alternative 2 :
119
+ // Alternative 3 :
108
120
109
- // We need "blink" (5) rather than the expected bright/bold (1)
110
- // attribute to get bright white background on some terminals .
121
+ // For some terminals we needed "blink" (5) rather than the expected bright/bold (1)
122
+ // attribute to get bright white background.
111
123
// Makes no sense but I stumbled across that somewhere.
112
124
113
- // This is your best choice for PuTTY. Background (around text but not rest of line) is set to white.
125
+ // In some cases, you might find background (around text but not rest of line) is set to white.
114
126
// On GNOME Terminal and LXTerminal, this produces blinking text with a gray background.
115
127
116
128
117
- // Alternative 3 :
129
+ // Alternative 4 :
118
130
119
131
// This is using the bright/bold attribute, as you would expect from the documentation.
120
132
// Whenever a dark color is used, the background is reset and needs to be set again.
121
133
// In recent tests, background is always gray, not white like it should be.
122
134
123
135
124
- #define MAX_T 3
136
+ #define MAX_T 4
125
137
126
- static const char * t_background_white [MAX_T + 1 ] = { "" , "\e[48;2;255;255;255m" , "\e[5;47m" , "\e[1;47m" };
138
+ static const char * t_background_white [MAX_T + 1 ] = { "" , "\e[48;2;255;255;255m" , "\e[48;2;255;255;255m" , "\e[5;47m" , "\e[1;47m" };
127
139
128
- static const char * t_black [MAX_T + 1 ] = { "" , "\e[0;30m" "\e[48;2;255;255;255m" , "\e[0;30m" "\e[5;47m" , "\e[0;30m" "\e[1;47m" };
129
- static const char * t_red [MAX_T + 1 ] = { "" , "\e[1;31m" "\e[48;2;255;255;255m" , "\e[1;31m" "\e[5;47m" , "\e[1;31m" "\e[1;47m" };
130
- static const char * t_green [MAX_T + 1 ] = { "" , "\e[1;32m" "\e[48;2;255;255;255m" , "\e[1;32m" "\e[5;47m" , "\e[1;32m" "\e[1;47m" };
131
- static const char * t_dark_green [MAX_T + 1 ]= { "" , "\e[0;32m" "\e[48;2;255;255;255m" , "\e[0;32m" "\e[5;47m" , "\e[0;32m" "\e[1;47m" };
132
- static const char * t_yellow [MAX_T + 1 ] = { "" , "\e[1;33m" "\e[48;2;255;255;255m" , "\e[1;33m" "\e[5;47m" , "\e[1;33m" "\e[1;47m" };
133
- static const char * t_blue [MAX_T + 1 ] = { "" , "\e[1;34m" "\e[48;2;255;255;255m" , "\e[1;34m" "\e[5;47m" , "\e[1;34m" "\e[1;47m" };
134
- static const char * t_magenta [MAX_T + 1 ] = { "" , "\e[1;35m" "\e[48;2;255;255;255m" , "\e[1;35m" "\e[5;47m" , "\e[1;35m" "\e[1;47m" };
135
- static const char * t_cyan [MAX_T + 1 ] = { "" , "\e[0;36m" "\e[48;2;255;255;255m" , "\e[0;36m" "\e[5;47m" , "\e[0;36m" "\e[1;47m" };
140
+ static const char * t_black [MAX_T + 1 ] = { "" , "\e[38;2;0;0;0m" , "\e[0;30m" "\e[48;2;255;255;255m" , "\e[0;30m" "\e[5;47m" , "\e[0;30m" "\e[1;47m" };
141
+ static const char * t_red [MAX_T + 1 ] = { "" , "\e[38;2;255;0;0m" , "\e[1;31m" "\e[48;2;255;255;255m" , "\e[1;31m" "\e[5;47m" , "\e[1;31m" "\e[1;47m" };
142
+ static const char * t_green [MAX_T + 1 ] = { "" , "\e[38;2;0;255;0m" , "\e[1;32m" "\e[48;2;255;255;255m" , "\e[1;32m" "\e[5;47m" , "\e[1;32m" "\e[1;47m" };
143
+ static const char * t_dark_green [MAX_T + 1 ]= { "" , "\e[38;2;0;192;0m" , "\e[0;32m" "\e[48;2;255;255;255m" , "\e[0;32m" "\e[5;47m" , "\e[0;32m" "\e[1;47m" };
144
+ static const char * t_yellow [MAX_T + 1 ] = { "" , "\e[38;2;255;255;0m" , "\e[1;33m" "\e[48;2;255;255;255m" , "\e[1;33m" "\e[5;47m" , "\e[1;33m" "\e[1;47m" };
145
+ static const char * t_blue [MAX_T + 1 ] = { "" , "\e[38;2;0;0;255m" , "\e[1;34m" "\e[48;2;255;255;255m" , "\e[1;34m" "\e[5;47m" , "\e[1;34m" "\e[1;47m" };
146
+ static const char * t_magenta [MAX_T + 1 ] = { "" , "\e[38;2;255;0;255m" , "\e[1;35m" "\e[48;2;255;255;255m" , "\e[1;35m" "\e[5;47m" , "\e[1;35m" "\e[1;47m" };
147
+ static const char * t_cyan [MAX_T + 1 ] = { "" , "\e[38;2;0;255;255m" , "\e[0;36m" "\e[48;2;255;255;255m" , "\e[0;36m" "\e[5;47m" , "\e[0;36m" "\e[1;47m" };
136
148
137
149
138
150
/* Clear from cursor to end of screen. */
@@ -148,10 +160,14 @@ static const char clear_eos[] = "\e[0J";
148
160
/*
149
161
* g_enable_color:
150
162
* 0 = disable text colors.
151
- * 1 = default, should be good for LXTerminal, GNOME Terminal, xterm.
152
- * 2 = alternative, best choice for PuTTY (i.e. remote login from Windows PC to Linux).
153
- * 3 = another alternative. Additional suggestions are welcome.
154
- * others... future possibility.
163
+ * 1 = default, should be good for LXTerminal >= 0.3.2, GNOME Terminal, xterm, PuTTY >= 0.71.
164
+ * 2 = what we had for a few earlier versions. Should be good for LXTerminal, GNOME Terminal, xterm.
165
+ * 3 = use 8 basic colors, blinking attribute to get brighter color. Best for older PuTTY.
166
+ * 4 = use 8 basic colors, bold attribute to get brighter color.
167
+ *
168
+ * others... future possibility - tell me if none of these work properly for your terminal type.
169
+ *
170
+ * 9 (more accurately any invalid value) = try all of them and exit.
155
171
*/
156
172
157
173
static int g_enable_color = 1 ;
0 commit comments