From 9762a94138e27e7ac7d0f21d7533687f23ed6686 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 21 Sep 2025 18:57:27 +0200 Subject: [PATCH] notifications: make icon guesses less strict --- .../ii/modules/common/widgets/notification_utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/common/widgets/notification_utils.js b/.config/quickshell/ii/modules/common/widgets/notification_utils.js index 9b151055c..7ab21c3bb 100644 --- a/.config/quickshell/ii/modules/common/widgets/notification_utils.js +++ b/.config/quickshell/ii/modules/common/widgets/notification_utils.js @@ -9,7 +9,7 @@ function findSuitableMaterialSymbol(summary = "") { const keywordsToTypes = { 'reboot': 'restart_alt', - 'recording': 'screen_record', + 'record': 'screen_record', 'battery': 'power', 'power': 'power', 'screenshot': 'screenshot_monitor', @@ -21,7 +21,7 @@ function findSuitableMaterialSymbol(summary = "") { 'update': 'update', 'ai response': 'neurology', 'control': 'settings', - 'upscale': 'compare', + 'upsca': 'compare', 'install': 'deployed_code_update', 'startswith:file': 'folder_copy', // Declarative startsWith check };