What is the time between blinks of the terminal cursor? Perhaps in terms of seconds.
Asked
Active
Viewed 6,043 times
5
-
:) count how many in a 1 min, or record screen if it's too fast. – user.dz Jun 19 '14 at 21:41
3 Answers
4
Open gconf-editor
(install with sudo apt-get install gconf-editor
), then check in Desktop->gnome->interface : cursor_blink_time
entry (express in milliseconds).
or using commandline:
gconftool --get /desktop/gnome/interface/cursor_blink_time

girardengo
- 4,965
- 1
- 26
- 31
4
To get the time in milliseconds between blinks of the gnome-terminal cursor (default is 1200), you can use the following command:
gsettings get org.gnome.desktop.interface cursor-blink-time
To set the time to another value, let say 2400 for example, you can use:
gsettings set org.gnome.desktop.interface cursor-blink-time 2400

Radu Rădeanu
- 169,590
1
That depends on the terminal emulator you are using. @giradengo showed you what (presumably) is the default for gnome-terminal
. In xterm
, you can control this with the -bcf
and -bcn
flags:
-bcf milliseconds
set the amount of time text cursor is off when blinking via the
cursorOffTime resource.
-bcn milliseconds
set the amount of time text cursor is on when blinking via the
cursorOffTime resource.
In general, the details will always depend on your terminal emulator, some (such as terminator
) don't seem to support blinking at akk while others let you customize it.

terdon
- 100,812