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