This commit is contained in:
Sakooooo 2024-08-06 03:50:11 +04:00
parent 0698530947
commit 327837666f
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -113,10 +113,15 @@ function Volume() {
}),
});
const value = Widget.Label({
label: audio.speaker.volume.toString(),
});
return Widget.Box({
class_name: "volume",
css: "min-width: 180px",
children: [icon, slider],
children: [
icon, value],
});
}