Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
44
rated 0 times [  44] [ 0]  / answers: 1 / hits: 59995  / 2 Years ago, wed, july 13, 2022, 1:02:06

Is it possible to set the default sound level more than 100%?


Every time after booting I've to manually increase the sound level from the sound settings which is a bit irritating.


I am using Ubuntu 13.04


More From » 13.04

 Answers
4

Using the following command in terminal, you can set sound level as you wish:



pactl -- set-sink-volume 0 150%


In this case we have set the volume of the sink #0 to 150%.



Now, if you want to set this setting as default at startup, add the above command in /etc/rc.local file. You can use sudo -H gedit /etc/rc.local to open an edit this file:



#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

pactl -- set-sink-volume 0 150%

exit 0

[#30260] Thursday, July 14, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ronicod

Total Points: 71
Total Questions: 111
Total Answers: 111

Location: Montenegro
Member since Fri, Dec 10, 2021
2 Years ago
ronicod questions
Thu, Nov 11, 21, 06:26, 3 Years ago
Sun, May 7, 23, 13:57, 1 Year ago
Sun, Jun 26, 22, 06:13, 2 Years ago
Fri, Oct 14, 22, 13:55, 2 Years ago
;