1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*
* Wrapper to help enable colorized man page output.
* Only works with PAGER=less
*
* https://bugs.gentoo.org/184604
* https://unix.stackexchange.com/questions/108699/documentation-on-less-termcap-variables
*
* Copyright 2003-2015 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define COLOR(c, b) "\e[" #c ";" #b "m"
#define _SE(termcap, col) setenv("LESS_TERMCAP_" #termcap, col, 0)
#define SE(termcap, c, b) _SE(termcap, COLOR(c, b))
static int usage(void)
{
puts(
"manpager: display man pages with color!\n"
"\n"
"Usage:\n"
"\texport MANPAGER=manpager\n"
"\tman man\n"
"\n"
"To control the colorization, set these env vars:\n"
"\tLESS_TERMCAP_mb - start blinking\n"
"\tLESS_TERMCAP_md - start bolding\n"
"\tLESS_TERMCAP_me - stop bolding\n"
"\tLESS_TERMCAP_us - start underlining\n"
"\tLESS_TERMCAP_ue - stop underlining\n"
"\tLESS_TERMCAP_so - start standout (reverse video)\n"
"\tLESS_TERMCAP_se - stop standout (reverse video)\n"
"\n"
"You can do so by doing:\n"
"\texport LESS_TERMCAP_md=\"$(printf '\\e[1;36m')\"\n"
"\n"
"Run 'less --help' or 'man less' for more info"
);
return 0;
}
int main(int argc, char *argv[])
{
if (argc == 2 && (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")))
return usage();
/* Blinking. */
SE(mb, 5, 31); /* Start. */
/* Bolding. */
SE(md, 1, 34); /* Start. */
SE(me, 0, 0); /* Stop. */
/* Underlining. */
SE(us, 4, 36); /* Start. */
SE(ue, 0, 0); /* Stop. */
#if 0
/* Standout (reverse video). */
SE(so, 1, 32); /* Start. */
SE(se, 0, 0); /* Stop. */
#endif
argv[0] = getenv("PAGER") ? : "less";
execvp(argv[0], argv);
perror("could not launch PAGER");
return 1;
}
|