diff --git a/config/ags/config.js b/config/ags/config.js index 5e0d7fc3..a1c36174 100644 --- a/config/ags/config.js +++ b/config/ags/config.js @@ -114,7 +114,10 @@ function Volume() { }) const volume = Widget.Label({ - label: Math.round(audio.speaker.volume * 100).toString(), + // label: Math.round(audio.speaker.volume * 100).toString(), + label: !audio.speaker.is_muted + ? ` ${Math.round(audio.speaker.volume * 100).toString()}` + : "", }) return Widget.Box({