From 327837666f851700c1a5b48ae81c6cb516483a31 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Tue, 6 Aug 2024 03:50:11 +0400 Subject: [PATCH] audio --- config/ags/config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config/ags/config.js b/config/ags/config.js index f03eda5f..d2a0ff78 100644 --- a/config/ags/config.js +++ b/config/ags/config.js @@ -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], }); }