Audio: added a settings to choose your favorite external audio mixer (ex: pavucontrol, ...)

This commit is contained in:
ItsLemmy
2025-11-19 08:28:51 -05:00
parent a9ccb4c133
commit d641eadf75
14 changed files with 67 additions and 7 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ Item {
}
function openExternalMixer() {
Quickshell.execDetached(["sh", "-c", "pwvucontrol || pavucontrol"]);
Quickshell.execDetached(["sh", "-c", Settings.data.audio.externalMixer]);
}
NPopupContextMenu {
+1 -1
View File
@@ -59,7 +59,7 @@ Item {
}
function openExternalMixer() {
Quickshell.execDetached(["sh", "-c", "pwvucontrol || pavucontrol"]);
Quickshell.execDetached(["sh", "-c", Settings.data.audio.externalMixer]);
}
Timer {