Skip to content

Commit f775cf4

Browse files
committed
add recommended pref: app.update.suppressPrompts
1 parent d2eb7b2 commit f775cf4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,11 @@ I also recommend setting the following prefs in `about:config`. There are two pr
174174
| devtools.inspector.showAllAnonymousContent | Boolean | true | Show native anonymous content (like scrollbars or tooltips) and user agent shadow roots (like the components of an `<input>` element) in the inspector |
175175
| devtools.inspector.showUserAgentStyles | Boolean | true | Show user agent styles in the inspector |
176176
| browser.newtabpage.activity-stream.asrouter.devtoolsEnabled | Boolean | true | Enable [ASRouter Devtools](https://firefox-source-docs.mozilla.org/browser/components/newtab/content-src/asrouter/docs/index.html) at about:newtab#devtools (useful if you're making your own CSS theme) |
177+
| app.update.suppressPrompts | Boolean | true | Disable update restart prompts; delay update available prompts for ~1 week |
177178

178179
</details>
179180

180-
Because most of the scripts and stylesheets here are tethered to the Nightly release channel, I also recommend disabling automatic updates in your Firefox preferences and downloading [my update alert system](#update-notification-slayer) that lets you choose when to update and notifies you unobtrusively when an update is available. Rather than flashing a popup window that requires you to click something to dismiss it, updates will just add a green update badge to the app menu "hamburger" button. To update you can just click the hamburger button, then click the update banner at the top of the app menu.
181+
Because most of the scripts and stylesheets here are tethered to the Nightly release channel, I also recommend disabling automatic updates in your Firefox preferences and either setting `app.update.suppressPrompts` to true in about:config (or click "Show fewer update notification prompts" in about:preferences). Rather than flashing a popup window that requires you to click something to dismiss it, updates will just add a green update badge to the app menu "hamburger" button. To update you can just click the hamburger button, then click the update banner at the top of the app menu. However, if you wait longer than a week to install the update, it will eventually open a popup. If you don't want any update popups at all, you can download [my update alert script](#update-notification-slayer). It replaces all the popups with badges and banners only.
181182

182183
## **Theme: (CSS)**
183184

prefs/recommended.js

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ user_pref("ui.prefersReducedMotion", 0);
8383
user_pref("ui.submenuDelay", 100);
8484
user_pref("ui.tooltipDelay", 300);
8585
user_pref("ui.key.menuAccessKeyFocuses", false);
86+
user_pref("app.update.suppressPrompts", true);
8687

8788
// style oriented prefs
8889
// use GTK style for in-content scrollbars

0 commit comments

Comments
 (0)