]> gitweb.michael.orlitzky.com - firefox-user-prefs.git/commitdiff
ui: disable auto-save of opened files to $HOME.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Sep 2022 18:37:45 +0000 (14:37 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Sep 2022 18:37:45 +0000 (14:37 -0400)
ui

diff --git a/ui b/ui
index d5dd753b28b48c3fa9ff0f5b765a213432557ab8..c2a1f5fdca33c4843be7f653d92eb763921d52df 100644 (file)
--- a/ui
+++ b/ui
@@ -30,3 +30,16 @@ user_pref("browser.urlbar.trimURLs", false);
  */
 user_pref("network.IDN_show_punycode", true);
 
+
+/* Don't save files that I "Open with..." to my home directory.
+ *
+ * This breaks twenty-year-old cross-browser expectations, and is a
+ * privacy issue for users who have opted not to "Save file" and
+ * expect it not to save the goddamn file.
+ *
+ * References:
+ *
+ * 1. https://superuser.com/questions/1698026/firefox-temporary-downloads-save-location
+ *
+ */
+user_pref("browser.download.start_downloads_in_tmp_dir", true);