How do you change the text-cursor/caret in Terminal to block, I-Beam, or underline.
Asked
Active
Viewed 1.0k times
12
-
Gnome terminal or some other kind of GUI? Maybe the tty? – Braiam Jul 29 '14 at 22:47
3 Answers
16
In recent versions of gnome-terminal, you can use the following escape sequences to change the cursor:
\e[0 q
or\e[ q
: reset to whatever's defined in the profile settings\e[1 q
: blinking block\e[2 q
: steady block\e[3 q
: blinking underline\e[4 q
: steady underline\e[5 q
: blinking I-beam\e[6 q
: steady I-beam
You can print these by e.g. echo -ne '\e[5 q'
.
This has the advantage/disadvantage (based on your use case) compared to the gconftool
method that it influences the given tab only, and not all the tabs that use the given profile.

egmont
- 8,225
-
This looks awesome! Unfortunately, I can't use it (running
gnome-terminal
3.14.1). Is there anything I should do to enable this? (it does work inxterm
) – iago-lito Jul 21 '15 at 13:16 -
4This feature is available since vte-0.40 which officially pairs with gnome-terminal-3.16 (although you can probably upgrade your vte only and keep gnome-terminal-3.14). – egmont Jul 22 '15 at 07:55
-
-
great answer! I followed these instructions to get gnome-terminal 3.16 http://askubuntu.com/a/625250/114821 – netimen Aug 16 '15 at 09:55
-
NB: if you're using tmux, you'll probably need to tell tmux how to reset the cursor shape by adding something like this to your .tmux.conf, or the first sequence won't work:
set -ga terminal-overrides ",*256color*:Se=\\E[0 q"
– ash Jul 29 '18 at 14:50
7
In addition to the GUI method, you can also change the cursor shape from the command-line:
$ gconftool-2 --type string --set /apps/gnome-terminal/profiles/Default/cursor_shape <VALUE>
The possible values are "block" to use a block cursor, "ibeam" to use a vertical line cursor, or "underline" to use an underline cursor.
To get the current value:
$ gconftool-2 --get /apps/gnome-terminal/profiles/Default/cursor_shape
block

Sylvain Pineau
- 62,169
-
1
-
Note: This changes the caret not only in the current terminal, but also in all other current and future gnome-terminal tabs of the same profile, just as if you opened the graphical preferences editor and switched it there. – egmont Sep 13 '16 at 15:44
-
@egmont Indeed, I've just read your answer. Now depending if it has to be persistent or not, we have the choice. Thanks – Sylvain Pineau Sep 13 '16 at 16:02
6
To change your text-cursor/caret:
- Open up Terminal.
- Right click the terminal window.
- Hover your mouse over the option Profiles.
- Select Profile Prefrences.
As seen here:
5.Here you will find the option, Cursor Shape.
6.Enjoy using Terminal with a different Caret.

programking
- 1,471