diff --git a/config/ags/config.js b/config/ags/config.js index 83755609..5e0d7fc3 100644 --- a/config/ags/config.js +++ b/config/ags/config.js @@ -113,10 +113,14 @@ function Volume() { }), }) + const volume = Widget.Label({ + label: Math.round(audio.speaker.volume * 100).toString(), + }) + return Widget.Box({ class_name: "volume", css: "min-width: 180px", - children: [icon, slider], + children: [icon, volume], }) }