feat: make audio output into button and improve weather exit process

This commit is contained in:
Nydragon 2024-11-24 12:26:02 +01:00
parent e9a621dbaa
commit 162ebbbea4
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
4 changed files with 53 additions and 61 deletions

View file

@ -10,7 +10,7 @@ import "base"
// - adjust sink & source volume
// - mute sinks & sources
BRectangle {
BButton {
id: audiow
height: (icon.height + slider.height) * 1.5
@ -20,14 +20,7 @@ BRectangle {
objects: [audiow.sink]
}
AudioManager {
id: audioman
}
MouseArea {
id: audio_area
anchors.fill: parent
property AudioManager audioman: AudioManager {}
onClicked: {
audioman.visible = !audioman.visible;
@ -61,6 +54,7 @@ BRectangle {
anchors.horizontalCenter: parent.horizontalCenter
height: background.height
width: parent.width * 0.75
enabled: false
value: audiow.sink?.audio.volume ?? 0
stepSize: 0.01
@ -83,5 +77,4 @@ BRectangle {
handle: Rectangle {}
}
}
}
}

View file

@ -45,7 +45,10 @@ PanelWindow {
// TODO: on click open a calendar view
ClockWidget {}
AudioOutput {}
AudioOutput {
width: parent.width
height: parent.width * 1.2
}
SysTray {}

View file

@ -13,7 +13,7 @@ Item {
Component.onCompleted: {
I3.focusedMonitorChanged.connect(e => {
dash.focused = I3.monitorFor(root.screen)?.focused;
dash.focused = I3.monitorFor(root.screen)?.focused ?? false;
});
}

View file

@ -57,13 +57,9 @@ Singleton {
weather.dataRaw += e;
}
}
onRunningChanged: {
if (running) {
weather.dataRaw = "";
}
if (!running) {
onExited: (code, status) => {
weather.lastFetch = JSON.parse(weather.dataRaw);
}
weather.dataRaw = "";
}
}