summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSoramane <61896496+soramanew@users.noreply.github.com>2025-07-30 13:33:11 +1000
committerSoramane <61896496+soramanew@users.noreply.github.com>2025-07-30 13:33:11 +1000
commitc1be0f0ccb87af51c5b8a1a948d0f8acb108f9de (patch)
treeb78e858eaa687c14f6647594619802c864633715 /modules
parent[CI] chore: update flake (diff)
downloadcaelestia-shell-c1be0f0ccb87af51c5b8a1a948d0f8acb108f9de.tar.gz
caelestia-shell-c1be0f0ccb87af51c5b8a1a948d0f8acb108f9de.tar.bz2
caelestia-shell-c1be0f0ccb87af51c5b8a1a948d0f8acb108f9de.zip
config: allow configuring external audio program
Closes #302
Diffstat (limited to 'modules')
-rw-r--r--modules/bar/popouts/Audio.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bar/popouts/Audio.qml b/modules/bar/popouts/Audio.qml
index 28667ec..7afacb4 100644
--- a/modules/bar/popouts/Audio.qml
+++ b/modules/bar/popouts/Audio.qml
@@ -43,7 +43,7 @@ ColumnLayout {
StateLayer {
function onClicked(): void {
root.wrapper.hasCurrent = false;
- Quickshell.execDetached(["pavucontrol"]);
+ Quickshell.execDetached(["app2unit", "--", ...Config.bar.externalAudioProgram]);
}
}