From 61e7d2f30775128713df2cf748e086c58677ef57 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Mon, 18 May 2026 23:10:24 -0400 Subject: [PATCH] Use singular microphone label --- shell/plugins/bar/widgets/audioPanel.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/plugins/bar/widgets/audioPanel.qml b/shell/plugins/bar/widgets/audioPanel.qml index 0d445a6f..1ea03c0c 100644 --- a/shell/plugins/bar/widgets/audioPanel.qml +++ b/shell/plugins/bar/widgets/audioPanel.qml @@ -347,6 +347,7 @@ Item { label = label.replace(/^built-?in audio\s+/i, "") label = label.replace(/\s+Output$/i, "") label = label.replace(/\s+Input$/i, "") + label = label.replace(/\bMicrophones\b/g, "Microphone") return label }