终端光标闪烁的间隔时间是多少?

终端光标闪烁的间隔时间是多少?

终端光标闪烁的间隔是多少?也许以秒为单位。

答案1

打开gconf-editor(用 安装sudo apt-get install gconf-editor),然后检查Desktop->gnome->interface : cursor_blink_time条目(以毫秒为单位)。

在此处输入图片描述

或使用命令行:

gconftool --get /desktop/gnome/interface/cursor_blink_time

答案2

要获取 gnome-terminal 光标闪烁之间的时间(以毫秒为单位)(默认为 1200),可以使用以下命令:

gsettings get org.gnome.desktop.interface cursor-blink-time

要将时间设置为其他值,比如说 2400,您可以使用:

gsettings set org.gnome.desktop.interface cursor-blink-time 2400

答案3

这取决于您使用的终端仿真器。@giradengo 向您展示了 的默认值(大概是)gnome-terminal。在 中xterm,您可以使用-bcf-bcn标志来控制它:

   -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.

一般来说,细节总是取决于您的终端仿真器,有些(例如terminator)似乎不支持 akk 闪烁,而其他的则允许您自定义它。

相关内容