增加声级

是否可以将默认声级设置为100%以上?每次启动后我都必须手动增加声音设置的声级,这有点刺激。 我正在使用Ubuntu 13.04。

在终端中使用以下命令,您可以根据需要设置声级:

pactl -- set-sink-volume 0 150% 

在这种情况下,我们将接收器#0的容量设置为150%。

现在,如果要在启动时将此设置设置为默认值,请在/etc/rc.local文件中添加以上命令。 您可以使用sudo -H gedit /etc/rc.local打开编辑此文件:

 #!/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