47

screenshot with Ask Ubuntu open in Firefox, dock on left

The big dock on the left. In other versions you could escape Unity Launcher by going to GNOME, what now? GNOME tweaks is not showing it as an extension, even though it looks a lot like Dash to Dock.

Tweaks/Extensions dialog

I see autohide options in settings, but no way to completely remove it and use the GNOME default.

Edit: I'm not looking for vanilla GNOME, but simply to hide the dock.

pomsky
  • 68,507
rawsh
  • 637

5 Answers5

62

Run the following:

cd /usr/share/gnome-shell/extensions/
sudo mv ubuntu-dock@ubuntu.com{,.bak}

Press ALT + F2 and type r in the input.


In case if you need to undo:

cd /usr/share/gnome-shell/extensions/
sudo mv ubuntu-dock@ubuntu.com{.bak,}
Eliah Kagan
  • 117,780
Long
  • 778
26

Since Ubuntu Dock is a system extension (package name: gnome-shell-extension-ubuntu-dock), it is not possible to simply disable it using GNOME Tweaks or from the GNOME Shell Extensions website.

Removing this package by running

sudo apt remove gnome-shell-extension-ubuntu-dock

should get rid of the dock, but it is not recommended as it will also remove the ubuntu-desktop meta-package which may break stuff later (see this: Is it safe to remove ubuntu-desktop package?).

Arguably a cleaner solution is to use vanilla GNOME (GNOME shell sans modifications made by Ubuntu). In vanilla GNOME, Ubuntu Dock disabled by default.

You may install vanilla GNOME by running

sudo apt install vanilla-gnome-desktop

Once it is installed, reboot (or re-login). Once you get to the GDM login screen you should find a cogwheel (⚙️) next to the sign in button. If you click on the cogwheel you should find options titled "GNOME" and "GNOME on Wayland" along with Ubuntu and Ubuntu on Wayland. Select any of the GNOME options instead of Ubuntu options.

pomsky
  • 68,507
17

For Ubuntu 20.04

The dock is listed as a built in extension. You can simply go to the built in app "Extensions" and then disable the dock.

pomsky
  • 68,507
Erdnase
  • 595
12

It can be also disabled without hacking system files, or removing packages and breaking dependencies.

Using old gnome-shell-extension-tool:

gnome-shell-extension-tool -e ubuntu-dock@ubuntu.com

Or, via new gnome-extensions:

gnome-extensions disable ubuntu-dock@ubuntu.com

In the end, these commands should store configuration in dconf, where dconf dump / outputs something like:

...

[org/gnome/shell]
disabled-extensions=['desktop-icons@csoriano', 'ubuntu-dock@ubuntu.com']
enabled-extensions=['system-monitor@paradoxxx.zero.gmail.com']

...
kravemir
  • 299
  • 2
    On Ubuntu 20.04 running gnome-extensions disable ubuntu-dock@ubuntu.com worked for me. Thanks! And I guess since it is the system extension, it is the easiest way to disable it without breaking something. – Den Kasyanov Apr 27 '20 at 07:28
  • 1
    You most probably meant gnome-shell-extension-tool -d ubuntu-dock@ubuntu.com instead. But even gnome-shell-extension-tool -d ubuntu-dock@ubuntu.com doesn't hide the dock on my standard Ubuntu 18.04 installation. It just toggles the enabled/disabled status for the extension (as seen in GNOME Tweaks, just as in the screenshot in the question), but has no effect on the actual visibility of the dock itself. – pomsky Apr 28 '20 at 08:25
  • In 20.04 gnome-extensions disable ubuntu-dock@ubuntu.com does the trick, no the version with -d in the comment above. – Filbuntu Aug 08 '20 at 09:47
4

NOTE: If you want to remove it completely delete the /usr/share/gnome-shell/extensions/ubuntu-dock@ubuntu.com (make backup in case of emergency). Then restart.

If you want to tweak more use dconf-editor:

You can tweak the dock from dconf-editor. Install it by sudo apt install dconf-tools.

Open dconf-editor and goto org->gnome->shell->extension->dash-to-dock. You can do some tweaks like hiding dock, turn off extending dock etc. dconf-editor

  • "hiding dock" is not possible, is it? – pomsky Apr 30 '18 at 16:13
  • @pomsky yes it is not possible via dconf-editor. But if it is needed to remove completely , delete /usr/share/gnome-shell/extensions/ubuntu-dock@ubuntu.com folder and restart. – Lakindu Akash Apr 30 '18 at 16:26
  • 1
    Not a permanent solution, since the package is a part of ubuntu-desktop metpackage, it will get reinstalled every now and then. – pomsky Apr 30 '18 at 16:33