How to disable blinking cursor in Gnome 3.8?

Try (in a terminal):

gsettings set org.gnome.desktop.interface cursor-blink false

As your can see the key has been moved to org.gnome.desktop.interface (via GSettings), so you can access it via dconf-editor if you prefer so.


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.