feat: add setting default sink capabilities
This commit is contained in:
parent
c6158cdc4e
commit
3e1d621e72
2 changed files with 12 additions and 5 deletions
|
@ -2,6 +2,7 @@ import QtQuick
|
|||
import QtQuick.Layouts
|
||||
import QtQuick.Controls
|
||||
import Quickshell.Services.Pipewire
|
||||
import Quickshell.Io
|
||||
|
||||
RowLayout {
|
||||
id: root
|
||||
|
@ -70,6 +71,14 @@ RowLayout {
|
|||
checkable: false
|
||||
visible: root.node.isSink
|
||||
text: isDefault ? "default" : "not default"
|
||||
|
||||
onClicked: makeDefault.running = true
|
||||
|
||||
Process {
|
||||
id: makeDefault
|
||||
command: ["pactl", "set-default-sink", root.node?.name]
|
||||
running: false
|
||||
}
|
||||
}
|
||||
}
|
||||
RowLayout {
|
||||
|
|
|
@ -3,6 +3,7 @@ import Quickshell.Services.Pipewire
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import QtQuick.Controls
|
||||
import "root:base"
|
||||
|
||||
PopupWindow {
|
||||
anchor {
|
||||
|
@ -16,12 +17,9 @@ PopupWindow {
|
|||
height: 300
|
||||
visible: false
|
||||
|
||||
Rectangle {
|
||||
BRectangle {
|
||||
anchors.fill: parent
|
||||
border.color: "black"
|
||||
border.width: 2
|
||||
radius: 5
|
||||
color: "white"
|
||||
|
||||
ScrollView {
|
||||
anchors.fill: parent
|
||||
contentWidth: availableWidth
|
||||
|
|
Loading…
Add table
Reference in a new issue