I've searched everywhere in the system settings but I still can't find it.
8 Answers
NOTE: I found out the Dconf
has mostly replaced Gconf
. Since using Gconf
did't work, I have updated the instructions for Dconf
.
You can change the setting in dconf-editor
sudo apt-get install dconf-editor
Open dconf-editor
and navigate to: org -> gnome -> settings-daemon -> peripherals -> mouse
then check/uncheck the 'locate pointer' option.
-
Didn't work... I have to admit, I did see that on my adventure through every system setting. – phillips1012 Dec 18 '12 at 03:04
-
3It worked for me and I just add to it the comamndline way( to build in your scripts etc.):
gsettings set org.gnome.settings-daemon.peripherals.mouse locate-pointer true
. Great explanation in http://askubuntu.com/a/191013/79176 . – Huge Aug 24 '14 at 17:10 -
1
-
-
@Seth I did not try it, but it will surely work. My preference would always be a one-liner shell command with pre-installed tools, over a graphical step-by-step explanation with tools to be additionally installed. My comment about the Ubuntu version was probably wrong and misleading, though. – MPi May 11 '16 at 07:33
-
MPi this worked well for me, versions 14 and 16. Thanks Seth. Installing dconf-editor isn't a big deal it is useful for many, many things. It's useful to have in one's system, or it is for me anyway. – neuronet Aug 09 '16 at 03:15
-
-
At least with Nautilus 3.14.3 on Ubuntu 16.04 be were of this bug that don't let you copy (Ctrl+C) filenames. – Pablo Bianchi Jun 09 '17 at 02:04
-
In a terminal run:
gsettings set org.gnome.settings-daemon.peripherals.mouse locate-pointer true
to enable and/or
gsettings set org.gnome.settings-daemon.peripherals.mouse locate-pointer false
to disable.

- 90,397
Its under 'Mouse and Touchpad' in System Settings

- 58,122
-
-
-
-
No, I'm using gnome 3.6 (with a custom theme, obviously). I think I may have discovered the cause, though. I updated to gnome-control-center 3.6, which doesn't have that option. Any workarounds? – phillips1012 Dec 18 '12 at 02:25
-
-
-
-
This is what I found, and it looks exactly like what I have: www.webupd8.org/2012/11/gnome-control-center-36-available-in.html. Do you know of any way to downgrade it back to the previous version? – phillips1012 Dec 18 '12 at 02:37
-
This thread has the gconf setting. See if the switch to dconf has nuked this yet: http://ubuntuforums.org/showthread.php?t=949500 – RobotHumans Dec 18 '12 at 02:43
-
-
1
-
It's a pity that this option has been removed later and as suggested in another answer you now (e.g. Ubuntu 13.10) have to go through a number of steps in dconf to this end :-( – Sadi Mar 13 '14 at 09:01
For those in Ubuntu 22.04:
The Locate Pointer
option is listed in Settings
->Accessibility
. Turn it off.
You can do this using Gnome Tweak Tool ...
Look at "Keyboard and Mouse" settings ... its an On - OFF switch ... CTRL key.

- 61
-
3-1 because of poor answer. Using GNOME Tweak Tool... in Ubuntu with Unity desktop? There is no "Keyboard and Mouse" settings in GNOME Tweak Tool. – Dec 03 '15 at 03:29
-
1Still a useful answer, for Ubuntu users on 17.10 that switched to Gnome Shell:
gnome-tweak-tools
> "Keyboard and Mouse" > "Mouse" > "Pointer Location" / "Press the Ctrl key to highlight the pointer." – Yann Dìnendal Mar 06 '18 at 08:58 -
1its now become valid, and helped me, as i'm on ubuntu 18 - which uses gnome by defaultr – user230910 May 30 '18 at 05:01
In Ubuntu 20 this setting is in Settings -> Universal Access -> Locate Pointer.
With dconf
dconf write /org/gnome/desktop/interface/locate-pointer false

- 141
In Ubuntu 15.04 LTS
$ gsettings set org.gnome.settings-daemon.peripherals.mouse locate-pointer true
worked fine but I could no longer use the CTRL key in remmina VNC.
-
Don't you mean "gsettings set org.gnome.settings-daemon.peripherals.mouse locate-pointer false" – Jason May 21 '18 at 17:43
dconf
has replacedgconf
. Are you still looking for a fix? – Seth Jan 29 '13 at 00:45