Jocelyn Le Sage e1d32c30f2 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.
2023-04-08 21:55:36 -04:00

8 lines
388 B
JavaScript

// Disable the privacy notice page.
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);