Double hight characters
am 08.01.2008 21:33:41 von apogeusistemas
Hi:
Where could I find a table showing me all tput command options, like
bold, reverse, blink, underline, etc ?
I need create menus and I want know if is possible create double width/
double hight
characters.
Thank you !
Re: Double hight characters
am 08.01.2008 22:14:02 von Ed Morton
apogeusistemas@gmail.com wrote:
> Hi:
> Where could I find a table showing me all tput command options, like
> bold, reverse, blink, underline, etc ?
> I need create menus and I want know if is possible create double width/
> double hight
> characters.
>
> Thank you !
Take a look at the tput and terminfo man pages.
Ed.
Re: Double height characters
am 09.01.2008 11:38:16 von Stephane CHAZELAS
On Tue, 8 Jan 2008 12:33:41 -0800 (PST), apogeusistemas@gmail.com wrote:
> Hi:
> Where could I find a table showing me all tput command options, like
> bold, reverse, blink, underline, etc ?
> I need create menus and I want know if is possible create double width/
> double height
> characters.
[...]
The terminfo(5) man page will show you that. However,
double-height characters is not one of the capabilities defined
by terminfo.
Where those capabilities exist such as on xterm, it's very
specific. You have to send the upper half and then the lower
half.
To display a big line of text for instance:
doubleh() (
IFS=" "
printf '\033#3%s\r\n\033#4%s\n' "$*" "$*"
)
You'll find the details in the ctlseqs.ms file in the source
distribution of xterm.
--
Stephane