feat(audiomanager): display all sinks
This commit is contained in:
parent
388d31b1ec
commit
16a5743c6a
3 changed files with 18 additions and 16 deletions
|
@ -10,8 +10,6 @@ import "windows"
|
|||
// - adjust sink & source volume
|
||||
// - mute sinks & sources
|
||||
|
||||
// BUG: When controlling audio from outside of QS, the change is reflected, but if audio in pavucontrol is not 100%
|
||||
// QS can only change from 0 to whatever is set in pavucontrol
|
||||
Rectangle {
|
||||
id: aoutput
|
||||
width: parent.width
|
||||
|
@ -65,6 +63,7 @@ Rectangle {
|
|||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
fillMode: Image.PreserveAspectFit
|
||||
}
|
||||
|
||||
Slider {
|
||||
id: slider
|
||||
anchors.top: icon.bottom
|
||||
|
@ -72,9 +71,8 @@ Rectangle {
|
|||
height: background.height
|
||||
width: parent.width * 0.75
|
||||
enabled: false
|
||||
value: sink.audio.volume
|
||||
value: sink?.audio.volume ?? 0
|
||||
stepSize: 0.01
|
||||
wheelEnabled: true
|
||||
|
||||
contentItem: Rectangle {
|
||||
color: "#3191CD" // Change color based on value
|
||||
|
@ -92,7 +90,6 @@ Rectangle {
|
|||
}
|
||||
|
||||
handle: Rectangle {}
|
||||
onMoved: sink.audio.volume = value
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ import QtQuick
|
|||
import QtQuick.Layouts
|
||||
import QtQuick.Controls
|
||||
import Quickshell.Services.Pipewire
|
||||
import Quickshell
|
||||
|
||||
RowLayout {
|
||||
required property PwNode node
|
||||
|
@ -33,11 +34,14 @@ RowLayout {
|
|||
spacing: 6
|
||||
Layout.preferredHeight: 30
|
||||
|
||||
Text {
|
||||
Label {
|
||||
id: name
|
||||
text: {
|
||||
const app = node.isStream ? `[${node.properties["application.name"]}] ` : "";
|
||||
return app + (node.properties["media.name"] ?? node.description);
|
||||
}
|
||||
// Cede space to other elements -> don't have stupidly long names detroying the layout
|
||||
Layout.maximumWidth: 0
|
||||
}
|
||||
|
||||
Item {
|
||||
|
@ -61,6 +65,7 @@ RowLayout {
|
|||
}
|
||||
|
||||
Button {
|
||||
// TODO: setting a default sink is not implemented yet in QS
|
||||
visible: node.isSink
|
||||
text: "default"
|
||||
}
|
||||
|
|
|
@ -26,16 +26,17 @@ PopupWindow {
|
|||
contentWidth: availableWidth
|
||||
|
||||
ColumnLayout {
|
||||
// BUG: We access nodes before they are initialized
|
||||
anchors.fill: parent
|
||||
anchors.margins: 10
|
||||
|
||||
PwNodeLinkTracker {
|
||||
id: linkTracker
|
||||
node: Pipewire.defaultAudioSink
|
||||
}
|
||||
Repeater {
|
||||
model: Pipewire.nodes.values.filter(e => e.isSink)
|
||||
|
||||
AudioEntry {
|
||||
node: Pipewire.defaultAudioSink
|
||||
required property PwNode modelData
|
||||
node: modelData
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
@ -46,12 +47,11 @@ PopupWindow {
|
|||
}
|
||||
|
||||
Repeater {
|
||||
// Show all sources, regardless of what sink they are assigned to
|
||||
model: Pipewire.linkGroups
|
||||
model: Pipewire.nodes.values.filter(e => e.isStream)
|
||||
|
||||
AudioEntry {
|
||||
required property PwLinkGroup modelData
|
||||
node: modelData.source
|
||||
required property PwNode modelData
|
||||
node: modelData
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue