From 5cac1d4a3fc106935b3cd228e86bdd37efd2a29b Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Mon, 27 Oct 2025 08:41:44 -0400 Subject: [PATCH] Hotfix: volume widget broke Noctalia --- Modules/Bar/Widgets/Volume.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Bar/Widgets/Volume.qml b/Modules/Bar/Widgets/Volume.qml index cad0b18b..7113c0cc 100644 --- a/Modules/Bar/Widgets/Volume.qml +++ b/Modules/Bar/Widgets/Volume.qml @@ -96,7 +96,7 @@ Item { PanelService.getPanel("audioPanel")?.toggle(this) } onMiddleClicked: { - Quickshell.execDetached(["sh" "-c" "pwvucontrol || pavucontrol"]) + Quickshell.execDetached(["sh", "-c", "pwvucontrol || pavucontrol"]) } } }