None of the above worked for me on Debian Jessie. I worked out the following solution from recent gnome docs
## Find profile, see also Edit -> Profile Preferences -> Profile ID
gsettings get org.gnome.Terminal.ProfilesList list
## Substitute the relevant profile for UUID below - but include all / and :
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:UUID/ cursor-blink-mode off
## Disable globally (except gnome-terminal has its own config)
gsettings set org.gnome.desktop.interface cursor-blink false
To automate this for all profiles, enter in bash
for uuid in $(gsettings get org.gnome.Terminal.ProfilesList list | tr -d "[',]"); do
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:${uuid}/ cursor-blink-mode off
done
This retrieves the UUIDs from the profile list as above with gsettings
, and removes unneeded characters [',]
. The resulting list is used in setting the cursor-blink-mode
to off.
dconf write /org/gnome/terminal/legacy/profiles:/:<profile-uid>/cursor-blink-mode "'off'"
. The profile UID can be obtained from the profile preferences. Thanks to ArchWiki docs for the help. – g13n Mar 28 '15 at 17:23