I read this article on how scrollbars are becoming a problem and decided to do something about what I have:
5 minutes later, I got a much better scrollbar:
Note that these steps have only been tested on Linux.
Firefox Settings
-
Go to
about:config
in the URL bar. -
For a wider scrollbar, set
widget.non-native-theme.scrollbar.size.override
to the width of your choice. -
For a rectangular scrollbar (as opposed to a round one), set
widget.non-native-theme.scrollbar.style
to4
.
GTK
Edit .config/gtk-3.0/gtk.css
, or wherever the GTK config on your machine is:
scrollbar {
-GtkScrollbar-has-forward-stepper: true;
-GtkScrollbar-has-backward-stepper: true;
}
This adds the stepper arrows back to the scrollbar.