feat: make audio output into button and improve weather exit process
This commit is contained in:
parent
e9a621dbaa
commit
162ebbbea4
4 changed files with 53 additions and 61 deletions
|
@ -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
|
||||||
|
@ -84,4 +78,3 @@ BRectangle {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
|
@ -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 {}
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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 = "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue