From 5b5a0099dcb175e10182a4e6566ddc691327dec0 Mon Sep 17 00:00:00 2001 From: 73 <73@users.noreply.github.com> Date: Fri, 26 Nov 2021 17:19:00 +0100 Subject: [PATCH] Support native overlay scrollbars (#302) --- README.md | 10 ---------- configuration/user.js | 3 +++ 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6cba6ab..1a906c0 100644 --- a/README.md +++ b/README.md @@ -152,16 +152,6 @@ git pull origin master 1. Go to your profile folder. (Go to `about:support` in Firefox > Application Basics > Profile Directory > Open Directory) 2. Remove `chrome` folder. -## Scrollbars -To achieve Firefox with overlay scrollbars install [firefox-gnome-scrollbars](https://github.com/rafaelmardojai/firefox-gnome-scrollbars). - -## Enabling optional features -Optional features can be enabled by creating new `boolean` preferences in `about:config`. - -1. Go to the `about:config` page -2. Type the key of the feature you want to enable -3. Set it as a `boolean` and click on the add button -4. Restart Firefox ### Features diff --git a/configuration/user.js b/configuration/user.js index 639071f..3c16bda 100644 --- a/configuration/user.js +++ b/configuration/user.js @@ -10,3 +10,6 @@ user_pref("browser.uidensity", 0); // Enable SVG context-propertes user_pref("svg.context-properties.content.enabled", true); + +// Enable overlay scrollbars +user_pref("ui.useOverlayScrollbars", 1);