From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38955) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ipjRA-0006y0-GA for guix-patches@gnu.org; Thu, 09 Jan 2020 20:50:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ipjR9-0002cN-6C for guix-patches@gnu.org; Thu, 09 Jan 2020 20:50:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:47438) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ipjR9-0002az-1l for guix-patches@gnu.org; Thu, 09 Jan 2020 20:50:07 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ipjR8-0003l1-TZ for guix-patches@gnu.org; Thu, 09 Jan 2020 20:50:06 -0500 Subject: [bug#39053] [PATCH 3/6] services: pulseaudio-configuration: Set flat-volumes to no. Resent-Message-ID: From: Leo Prikler Date: Fri, 10 Jan 2020 02:48:21 +0100 Message-Id: <20200110014823.10595-3-leo.prikler@student.tugraz.at> In-Reply-To: <87blrc1epy.fsf@devup.no> References: <87blrc1epy.fsf@devup.no> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39053@debbugs.gnu.org * gnu/services/sound (pulseaudio-configuration) [daemon-conf]: Disable flat-volumes. Enabling flat-volumes, as is the upstream default, causes unpleasant experiences to users when applications inadvertently max out the system volume (e.g. as in #38172). --- gnu/services/sound.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/services/sound.scm b/gnu/services/sound.scm index 6b2b345a44..5d72b3ada2 100644 --- a/gnu/services/sound.scm +++ b/gnu/services/sound.scm @@ -113,7 +113,7 @@ ctl.!default { (client-conf pulseaudio-client-conf (default '())) (daemon-conf pulseaudio-daemon-conf - (default '())) + (default '((flat-volumes . no)))) (script-file pulseaudio-script-file (default (file-append pulseaudio "/etc/pulse/default.pa"))) (system-script-file pulseaudio-system-script-file -- 2.24.1