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

View file

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

View file

@ -13,7 +13,7 @@ Item {
Component.onCompleted: { Component.onCompleted: {
I3.focusedMonitorChanged.connect(e => { 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; weather.dataRaw += e;
} }
} }
onRunningChanged: { onExited: (code, status) => {
if (running) {
weather.dataRaw = "";
}
if (!running) {
weather.lastFetch = JSON.parse(weather.dataRaw); weather.lastFetch = JSON.parse(weather.dataRaw);
} weather.dataRaw = "";
} }
} }