23

I've searched everywhere in the system settings but I still can't find it.

8 Answers8

32

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.

enter image description here

Champ
  • 219
Seth
  • 58,122
  • 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
  • 3
    It 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
    This answer is not the best answer for newer versions than at least 15.10 – MPi May 10 '16 at 06:30
  • @MPi Did you try it? It works juts fine for me on 15.10. – Seth May 10 '16 at 17:50
  • @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
  • worked for me on 16.04 – rbierman Jun 05 '17 at 18:47
  • 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
  • worked for me on ubuntu 18.04.3 LTS, gnome 3.28.2 – rehan Sep 29 '19 at 09:15
16

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.

A.B.
  • 90,397
10

Its under 'Mouse and Touchpad' in System Settings

enter image description here

Seth
  • 58,122
4

For those in Ubuntu 22.04:

The Locate Pointer option is listed in Settings->Accessibility. Turn it off.

3

You can do this using Gnome Tweak Tool ...

Look at "Keyboard and Mouse" settings ... its an On - OFF switch ... CTRL key.

  • 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
  • 1
    Still 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
  • 1
    its now become valid, and helped me, as i'm on ubuntu 18 - which uses gnome by defaultr – user230910 May 30 '18 at 05:01
1

In Ubuntu 20 this setting is in Settings -> Universal Access -> Locate Pointer.

With dconf

dconf write /org/gnome/desktop/interface/locate-pointer false
0

You can disable using Gnome Tweeks

enter image description here

0

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