]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
setterm: fix --hbcolor description
authorJakub Wilk <jwilk@jwilk.net>
Fri, 8 Mar 2019 20:25:59 +0000 (21:25 +0100)
committerJakub Wilk <jwilk@jwilk.net>
Fri, 8 Mar 2019 20:27:59 +0000 (21:27 +0100)
--hbcolor is for half-bright characters, which is sort of opposite of
bold.

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
term-utils/setterm.1
term-utils/setterm.c

index 88e118934221b78435a8fa9dbbcfc5c3e91f9cf0..c5eabc967ca8c4092a980967dfe552b1452545f3 100644 (file)
@@ -165,7 +165,7 @@ Turns dim (half-brightness) mode on or off.  Except on a virtual console,
 turns off all attributes (bold, half-brightness, blink, reverse).
 .TP
 \fB\-\-hbcolor\fP \fI16-color\fP
-Sets the color for bold characters.
+Sets the color for half-bright characters.
 .TP
 \fB\-\-initialize\fP
 Displays the terminal initialization string, which typically sets the
index d9a846ab0b01c432b5f70537c87e6f1010e54b37..0d4b81292a497a148024022d9e71723dd73bd4ac 100644 (file)
@@ -399,7 +399,7 @@ static void __attribute__((__noreturn__)) usage(void)
        fputs(_(" --foreground    default|<color>   set foreground color\n"), out);
        fputs(_(" --background    default|<color>   set background color\n"), out);
        fputs(_(" --ulcolor       [bright] <color>  set underlined text color\n"), out);
-       fputs(_(" --hbcolor       [bright] <color>  set bold text color\n"), out);
+       fputs(_(" --hbcolor       [bright] <color>  set half-bright text color\n"), out);
        fputs(_("                 <color>: black blue cyan green grey magenta red white yellow\n"), out);
        fputs(_(" --bold          [on|off]          bold\n"), out);
        fputs(_(" --half-bright   [on|off]          dim\n"), out);