diff --git a/modules/configuration/AudioView.qml b/modules/configuration/AudioView.qml index 9f0e6af..aed90ba 100644 --- a/modules/configuration/AudioView.qml +++ b/modules/configuration/AudioView.qml @@ -23,7 +23,7 @@ ColumnLayout { StyledText { Layout.column: 1 Layout.row: 1 - text: "Speakers" + text: "Device" } StyledComboBox { @@ -36,6 +36,23 @@ ColumnLayout { Pipewire.setSink(Pipewire.sinks[index]); } } + + StyledText { + Layout.column: 1 + Layout.row: 2 + text: "Volume" + } + + StyledSlider { + Layout.column: 2 + Layout.row: 2 + from: 0.0 + to: 1.0 + value: Pipewire.volume + onMoved: { + Pipewire.setVolume(value); + } + } } }