feat: add window opening for the audio manager

This commit is contained in:
Nydragon 2024-08-25 04:45:23 +02:00
parent cd382d4177
commit 59e06ced91
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 26 additions and 2 deletions

View file

@ -3,6 +3,7 @@ import QtQuick.Layouts
import QtQuick.Controls
import Quickshell
import Quickshell.Services.Pipewire
import "windows"
// TODO: on click open detailed sink options:
// - select default sink
@ -32,7 +33,10 @@ Rectangle {
anchors.fill: parent
onClicked: {}
onClicked: {
AudioManager.visible = !AudioManager.visible;
}
onWheel: wheel => {
const newVal = sink.audio.volume + (wheel.angleDelta.y / 12000);
sink.audio.volume = newVal < 1.0 ? (newVal > 0 ? newVal : 0.0) : 1.0;
@ -40,7 +44,7 @@ Rectangle {
Rectangle {
width: parent.width
color: "#00000000"
color: "transparent"
height: icon.height + slider.height
anchors.verticalCenter: parent.verticalCenter

View file

@ -14,6 +14,7 @@ Scope {
left: true
bottom: true
}
margins.left: 2
width: 30
color: "#00000000"

View file

@ -0,0 +1,19 @@
pragma Singleton
import Quickshell
import QtQuick
Singleton {
FloatingWindow {
color: "transparent"
height: 300
width: 600
Rectangle {
anchors.fill: parent
color: "#20ffffff"
// your content here
}
}
}