From 2813cbec068c4a259b3a1eec28aea33c0d96d713 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Wed, 1 Jul 2020 23:20:25 +0200 Subject: [PATCH] firefox: for use of non-native notifications --- firefox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/firefox.js b/firefox.js index 053c570..e3333a2 100644 --- a/firefox.js +++ b/firefox.js @@ -59,5 +59,8 @@ user_pref("network.trr.mode", 5); // No HTTP/3 yet (disabled by default, but document here it doesn't work well for me on Google) user_pref("network.http.http3.enabled", false); +// Don't use system notifications (awesome is not very good at displaying long notifications) +user_pref("alerts.useSystemBackend", false); + // Keep warn me on deprecated TLS versions user_pref("security.tls.version.enable-deprecated", false);