How do I make the cursor stop blinking when in a TTY? (or anywhere else).
BONUS Points for one universal setting that stops the cursor blinking almost everywhere.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
There is a standard control sequence to turn off cursor blinking on terminals.
printf '33[?12l'
However many terminals do not implement this setting, so read on.
There is a more widely implemented standard terminal setting for switching cursor visibility between high visibility, normal visibility and invisibility. Some terminals don’t make a difference between normal and high, and there’s no guarantee that one or the other will or will not blink. In terminfo, emit the cvvis, cnorm or civis string (e.g. tput cvvis). The corresponding termcap entries are vs, ve and vi.
These setting will not survive a terminal reset, so you may find that it doesn’t survive the launching of many full-screen applications. You can overcome this difficulty by adding the cursor configuration changing sequence to your terminal’s reset string.
- On a terminfo-based system using ncurses, save your terminal’s terminfo settings to a file with
infocmp >>~/etc/terminfo.txt. Edit the description to change thers1(basic reset) sequence, e.g. replacers1=Ecbyrs1=EcE[?12l. With some programs and settings, you may need to change thers2(full reset) as well. Then compile the terminfo description withtic ~/etc/terminfo.txt(this writes under the directory$TERMINFO, or~/.terminfoif unset). Or more automatically:infocmp -1 | sed '/^.rs[12]=/ s/,$/\E[?12l,/' | tic -
- On a termcap-based system, grab the termcap settings from your termcap database (typically
/etc/termcap). Change theis(basic reset) andrs(full reset) sequences to append your settings, e.g.:is=EcE[?12l:. Set theTERMCAPenvironment variable to the edited value (beginning and ending with:).
Some terminals and other applications give you more options:
- The xterm cursor blinks if the
cursorBlinkresource is set totrueor the-bcoption is passed on the command line. The blink rate is customizable through thecursorOnTimeandcursorOffTimeresources. - Some other GUI terminal emulators can blink the cursor; check their configuration dialog box.
- The Linux PC (VGA) console has a number of cursor settings; their exact meaning and applicability depends on the underlying VGA implementation (Linux framebuffer or video card). If your default cursor blinks, try turning the hardware cursor off and the software cursor on with something like
printf '33[17;127?c'(the first parameter 17 gives you the software cursor without a hardware cursor, and the second parameter set to 127 makes it essentially inverse video). See above regarding terminal resets. - In Emacs,
M-x blink-cursor-modetoggles the cursor’s blinking. Put(blink-cursor-mode 0)in your~/.emacsto turn it off. This is a global setting and does not apply in a text terminal.
See also Juri Linkov (Jurta)’s No Blinking page for how to turn off blinking in Lesstif, Tk, Gtk (Gnome), Qt (KDE), Firefox, and more.
Method 2
This gives you a solid yellow block (nonblinking) as a cursor:
echo -n -e 'e[?17;14;224c'
For more info check these references: Linuxgazette and EmacsWiki as well as the file /usr/src/linux/Documentation/VGA-softcursor.txt (if present on your system)
Method 3
I found this to be easier if you have root permissions:
~$ echo 0 > /sys/class/graphics/fbcon/cursor_blink
I put it in the machine startup script like /etc/rc.local for arch linux.
Method 4
In the linux tty you can use the escape sequence "e[?48;0;64c" or whatever you like but this doesn’t work in tmux/vim. Tmux/Vim issue a “cnorm” command on startup which by default contains a "e[?0c". You can see that this undoes the effects of the above setting. You need to change cnorm to the above sequence in order for the TUI applications to reset the cursor to your preference. More info on this by Gilles but if you are looking for a quick fix try this:
infocmp linux > /tmp/linux-terminfo # Replace the last escape sequence here with your colors and settings sed -i 's/cnorm=\E[?25h\E[?0c/cnorm=\E[?25h\E[?48;0;64c/' /tmp/linux-terminfo tic /tmp/linux-terminfo
The last command will generate the new terminfo under ~/.terminfo which should be picked up automatically if you restart tmux server/vim.
Method 5
This hides completely the cursor.
tput civis
To restore:
tput cnorm
Method 6
Put
33[?17;0;127c
to your PS1 variable and you’ll stop blinking constantly.
E.G:
export PS1=’33[?17;0;127cu:w$ ‘
Method 7
I put
echo 0 > /sys/class/graphics/fbcon/cursor_blink
in /etc/rc.local and created a systemd service for it using online instructions. However, I noticed that sometimes after boot the cursor is still blinking. It would be good to know the correct way to permanently turn off cursor blinking via sysfs on a modern systemd system, does anyone have any tips? Some distributions have /etc/sysfs.conf but I am running Arch and don’t find this file in sysfsutils or elsewhere.
As a temporary fix I ran the following command
sudo zsh -c 'echo -n "33[?17;0;255c" >> /etc/issue'
Some experimentation showed that the ‘255c’ at the end works better than ‘127c’ listed above, it produces a white rather than grey cursor.
Method 8
I was having this problem with the tty blinking cursor too. After looking in various places I eventually found this on GitHub. The cursor has stopped blinking in tty now.
Method 9
sudo cp /etc/issue /etc/issue.tmp setterm -cursor off | sudo tee /etc/issue cat /etc/issue.tmp | sudo tee --append /etc/issue sudo rm /etc/issue.tmp sudo reboot
Method 10
For Linux console:
Alternative 1
Add -I "33[?17;0;255c" option to getty lines in your /etc/inittab file. To do so:
-
Open the
/etc/inittabfile with a text editor. There should be lines that containgettyoragettyor similar. An example is:tty1::respawn:/sbin/getty 38400 tty1
-
Add
-I "33[?17;0;255c"to eachgettyline. As an example, after adding-I "33[?17;0;255c", thegettyline above would look as follows:tty1::respawn:/sbin/getty -I "33[?17;0;255c" 38400 tty1
-
Reboot the system, or alternatively, kill all
gettyprocesses.
Alternative 2
A better alternative is to put ESC[?17;0;255c in /etc/issue, instead of putting it to getty lines. Doing this using vi is as follows:
- Open
/etc/issueusingvi. - On anywhere of the
/etc/issuefile, enter insert mode. - While you are in insert mode, press
^V(that is, Ctrlv), then press Esc. The escape character should now be inserted. - Now, insert the remaining characters, which are
[?17;0;255c.
Alternative 3
Another alternative is keeping the hardware cursor (instead of using a software cursor) and stop blinking of the hardware cursor and make it a block cursor. To do so:
-
Add the following to
/etc/inittab:# Stop cursor blink on Linux console ::sysinit:/bin/sh -c "echo 0 > /sys/class/graphics/fbcon/cursor_blink"
-
Add
ESC[?8cto/etc/issue. Refer to “Alternative 2” for instructions on doing this.
However, with this option, the cursor does not become bright white. I guess this is only possible with using the software cursor.
After following any of these alternatives, you will obtain a white, non-blinking, block cursor.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0