From 9bbc26dd70747b8bd357590ec46114b167095cb6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 22 Aug 2025 16:51:39 +0700 Subject: [PATCH] settings app: allow volume limit over 100% --- .config/quickshell/ii/modules/common/Config.qml | 2 +- .config/quickshell/ii/modules/settings/ServicesConfig.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/common/Config.qml b/.config/quickshell/ii/modules/common/Config.qml index dc4d2e8fc..ae6bf70e0 100644 --- a/.config/quickshell/ii/modules/common/Config.qml +++ b/.config/quickshell/ii/modules/common/Config.qml @@ -103,7 +103,7 @@ Singleton { // Prevent sudden bangs property bool enable: true property real maxAllowedIncrease: 10 - property real maxAllowed: 90 // Realistically should already provide some protection when it's 99... + property real maxAllowed: 99 } } diff --git a/.config/quickshell/ii/modules/settings/ServicesConfig.qml b/.config/quickshell/ii/modules/settings/ServicesConfig.qml index 666d83bf4..712042d65 100644 --- a/.config/quickshell/ii/modules/settings/ServicesConfig.qml +++ b/.config/quickshell/ii/modules/settings/ServicesConfig.qml @@ -39,7 +39,7 @@ ContentPage { text: Translation.tr("Volume limit") value: Config.options.audio.protection.maxAllowed from: 0 - to: 100 + to: 154 // pavucontrol allows up to 153% stepSize: 2 onValueChanged: { Config.options.audio.protection.maxAllowed = value;