Improved graceful shutdown of Firefox:

- By default, disable confirmation when quitting using the ctrl+q shortcut.
  - Wait for Firefox to quit after sending ctrl+q key presses.
This commit is contained in:
Jocelyn Le Sage 2023-04-08 21:18:35 -04:00
parent 9e679b45a8
commit e1d32c30f2
2 changed files with 16 additions and 2 deletions

View file

@ -2,3 +2,6 @@
user_pref("toolkit.telemetry.reportingpolicy.firstRun", false);
// Prevent closing Firefox when closing the last tab.
user_pref("browser.tabs.closeWindowWithLastTab", false);
// Disable confirmation before quitting with Ctrl+Q. Needed to allow Firefox
// to quit cleanly when container is shutted down.
user_pref("browser.warnOnQuitShortcut", false);