Gnome – How to Change the Width of Scrollbars

gnomescrollbar

How do I change the width of scrollbars in Gnome?

The option to configure this is not in the "Appearance" application in the Preferences menu.

Best Answer

In the file ~/.gtkrc-2.0, add the following lines:

style "wide-scrollbar-style"
{
  GtkScrollbar::slider_width = 24
}
widget_class "*Scrollbar" style "wide-scrollbar-style"
Related Question