feat: add setting default sink capabilities

This commit is contained in:
Nydragon 2024-09-21 03:49:15 +02:00
parent c6158cdc4e
commit 3e1d621e72
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 12 additions and 5 deletions

View file

@ -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 {

View file

@ -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