I want to apply distinct sound volume for distinct users in Ubuntu 12.04. But now all users share the same master volume.
Asked
Active
Viewed 184 times
1 Answers
1
I've found the solution here. It sets volume level to a particular value after every login. It works with PulseAudio only.
Copy default pulse config file to your home location:
cp /etc/pulse/default.pa ~/.pulseIn your config file locate the following line:
load-module module-always-sinkImmediately after the above line, add the following line:
set-sink-volume 0 {your-volume-level-here}Volume level is a number in a range 0..65535. For example:
set-sink-volume 0 32768
kiaplayer
- 41