From baf9f2035aee5b45d25d3e2a9d9adbf2e1009983 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Wed, 5 Aug 2020 20:38:17 +0200 Subject: [PATCH] firefox: let awesome display notifications, but without icons Asking to display favicons seem to display nothing. Otherwise, the size of the icon could vary from ok to really big. --- firefox.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/firefox.js b/firefox.js index 089f815..e84f152 100644 --- a/firefox.js +++ b/firefox.js @@ -62,5 +62,6 @@ 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); +// Awesome is not very good scaling random icons +user_pref("alerts.showFavicons", true); +user_pref("alerts.useSystemBackend", true);