Re: screen terminal multiplexor and blinking cursor?
From: Stephane CHAZELAS (this.address_at_is.invalid)
Date: 03/01/05
- Next message: hendry: "Re: Syncing a file"
- Previous message: Bill Marcum: "Re: Syncing a file"
- In reply to: nospam_at_geniegate.com: "screen terminal multiplexor and blinking cursor?"
- Next in thread: nospam_at_geniegate.com: "Re: screen terminal multiplexor and blinking cursor?"
- Reply: nospam_at_geniegate.com: "Re: screen terminal multiplexor and blinking cursor?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 1 Mar 2005 20:50:34 +0000
2005-02-28, 18:31(+00), nospam@geniegate.com:
> Sorry if this is a FAQ, I tried googling for it, but 'screen' is
> such a common word it was difficult to locate anything. (hence the
> "terminal multiplexor" in the subject, for future users)
>
> Is there a way, using the 'screen' utility to make a cursor blink
> with terminals that don't support blinking?
[...]
No need for screen, if your terminal supports the cnorm and
civis escape sequences:
zsh -c 'zmodload -i zsh/terminfo zsh/zselect; while ((1)) {
echoti civis; zselect -t20; echoti cnorm; zselect -t20}' &
Note that some terminfo databases are broken, you may want to
try to hardcode the escape sequences. For xterm/rxvt for
instance, replace echoti civis with print -n '\e[?25l' amd
echoti cnorm with print -n '\e[?25h'
-- Stéphane
- Next message: hendry: "Re: Syncing a file"
- Previous message: Bill Marcum: "Re: Syncing a file"
- In reply to: nospam_at_geniegate.com: "screen terminal multiplexor and blinking cursor?"
- Next in thread: nospam_at_geniegate.com: "Re: screen terminal multiplexor and blinking cursor?"
- Reply: nospam_at_geniegate.com: "Re: screen terminal multiplexor and blinking cursor?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|