DEV Community

Stack All Flow
Stack All Flow

Posted on • Originally published at stackallflow.com on

How to Disable Overlay Scrollbars in Ubuntu?

overlay-scrollbars

It looks like Ubuntu 11.04 will come with overlay scrollbars by default. I do like them, but I don’t like the current mix of scrollbar types as many applications don’t yet use those overlay scrollbars.

Is there a way to disable overlay scrollbars ( without removing the overlay-scrollbar package)?

Accepted Answer

In 12.04 LTS there’s a slightly cleaner way to do it. Just run

gsettings set org.gnome.desktop.interface ubuntu-overlay-scrollbars false

Enter fullscreen mode Exit fullscreen mode

in a terminal. Apps opened afterwards will have the non-ayatana scrollbar.

To get the default behavior back, run

gsettings reset org.gnome.desktop.interface ubuntu-overlay-scrollbars

Enter fullscreen mode Exit fullscreen mode

If you are using 12.10 or later , run

gsettings set com.canonical.desktop.interface scrollbar-mode normal

Enter fullscreen mode Exit fullscreen mode

And to return to the default, run

gsettings reset com.canonical.desktop.interface scrollbar-mode

Enter fullscreen mode Exit fullscreen mode

The post How to Disable Overlay Scrollbars in Ubuntu? appeared first on Stack All Flow.

Top comments (0)