summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2026-03-15 14:48:03 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2026-03-15 14:48:03 +0100
commit9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb (patch)
tree98b53d20d37c50ec218e53988c1f3bec61431c1c /accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
parent43d8e0394f38364a2bbecfd05d8ddde3763efdb7 (diff)
downloadnixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.tar
nixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.tar.gz
nixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.tar.bz2
nixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.tar.xz
nixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.zip
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml')
-rw-r--r--accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml b/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
index 653f4763..91dc9591 100644
--- a/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
+++ b/accounts/gkleen@sif/shell/quickshell/VolumeOSD.qml
@@ -16,7 +16,7 @@ Scope {
16 16
17 Connections { 17 Connections {
18 enabled: Pipewire.defaultAudioSink 18 enabled: Pipewire.defaultAudioSink
19 target: Pipewire.defaultAudioSink?.audio 19 target: Pipewire.defaultAudioSink?.audio || null
20 20
21 function onVolumeChanged() { 21 function onVolumeChanged() {
22 root.show = "sink"; 22 root.show = "sink";
@@ -30,7 +30,7 @@ Scope {
30 30
31 Connections { 31 Connections {
32 enabled: Pipewire.defaultAudioSource 32 enabled: Pipewire.defaultAudioSource
33 target: Pipewire.defaultAudioSource?.audio 33 target: Pipewire.defaultAudioSource?.audio || null
34 34
35 function onVolumeChanged() { 35 function onVolumeChanged() {
36 root.show = "source"; 36 root.show = "source";