echo -ne "\e]?81;0;112c"
Which I understand should set the cursor to a non-blinking block
cursor in an xterm. Unfortunately it doesn't seem to work in MinTTY.
Cheers!
Chris
--
Chris Sutcliffe
http://emergedesktop.org
Could you point me at a spec for that? I couldn't find it at
http://invisible-island.net/xterm/ctlseqs/ctlseqs.html.
Andy
> Could you point me at a spec for that? I couldn't find it at
> http://invisible-island.net/xterm/ctlseqs/ctlseqs.html.
If I read this properly:
P s = 1 2 → Change text cursor color to P t
Shouldn't:
echo -ne "\e]12;12\a"
Set the text cursor color to blue?
Doing a little more Googling, I found the correct format:
echo -ne "\e]12;<Color Name>\a"
for example:
echo -ne "\e]12;RoyalBlue1\a"
Should set the cursor to RoyalBlue1.
Cheers!