From 3a3fcc482fd9b4845e7412acbf9fc148300eb6cf Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 30 May 2025 16:55:54 +0200 Subject: [PATCH] icon guess: update regexes --- .config/quickshell/services/AppSearch.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/services/AppSearch.qml b/.config/quickshell/services/AppSearch.qml index f76e25741..2af1187de 100644 --- a/.config/quickshell/services/AppSearch.qml +++ b/.config/quickshell/services/AppSearch.qml @@ -26,12 +26,16 @@ Singleton { }) property var regexSubstitutions: [ { - "regex": "/^steam_app_(\\d+)$/", + "regex": /^steam_app_(\\d+)$/, "replace": "steam_icon_$1" }, { - "regex": "Minecraft.*", + "regex": /Minecraft.*/, "replace": "minecraft" + }, + { + "regex": /.*polkit.*/, + "replace": "system-lock-screen" } ]