vistaus
|
2015-05-17
, 21:13
|
|
Posts: 423 |
Thanked: 478 times |
Joined on Sep 2014
@ Netherlands
|
#11
|
|
2015-05-18
, 04:56
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#12
|
|
2015-05-18
, 07:56
|
|
Posts: 423 |
Thanked: 478 times |
Joined on Sep 2014
@ Netherlands
|
#13
|
|
2015-05-18
, 08:43
|
|
Posts: 6,447 |
Thanked: 20,981 times |
Joined on Sep 2012
@ UK
|
#14
|
I'm not sarcastic, my system sounds really are low. All sounds and volume are set to max but still the output is too low.
|
2015-05-19
, 11:59
|
|
Posts: 423 |
Thanked: 478 times |
Joined on Sep 2014
@ Netherlands
|
#15
|
The Following 2 Users Say Thank You to vistaus For This Useful Post: | ||
|
2015-05-19
, 12:16
|
Posts: 188 |
Thanked: 308 times |
Joined on Jan 2013
@ UK
|
#16
|
pactl set-sink-volume 1 200%
in terminal and then lowering the ringtone sound of my Ambience a bit solved the issue for me. You have to repeat the command after a reboot though but that's a minority for much improved sound IMHO
(my source for this solution: https://together.jolla.com/question/...an-100-volume/)
[Unit] Description=Fix volume settings [Service] Type=oneshot RemainAfterExit=no ExecStart=/usr/bin/pactl set-sink-volume 1 200% [Install] WantedBy=default.target
The Following 2 Users Say Thank You to skanky For This Useful Post: | ||
|
2015-05-19
, 14:51
|
|
Posts: 1,079 |
Thanked: 1,019 times |
Joined on Mar 2010
|
#18
|
|
2015-05-20
, 17:51
|
|
Posts: 423 |
Thanked: 478 times |
Joined on Sep 2014
@ Netherlands
|
#19
|
You could create a systemd service file to re-apply the setting at reboot. Something like this would do it (this isn't tested, I just adapted one from my desktop machine):
put that in a file called <meaningfulname>.service in /etc/systemd/system (not sure what the default target is for the phone, not really looked into it).Code:[Unit] Description=Fix volume settings [Service] Type=oneshot RemainAfterExit=no ExecStart=/usr/bin/pactl set-sink-volume 1 200% [Install] WantedBy=default.target
There may be better examples on the forum, or together though, so you could do a search on "ExecStart" or similar. I've not yet had a need to do this, so I may be missing a detail here or there. It shouldn't break anything though, if something's missing, it just won't run.
The Following User Says Thank You to vistaus For This Useful Post: | ||
|
2015-05-20
, 20:39
|
Posts: 188 |
Thanked: 308 times |
Joined on Jan 2013
@ UK
|
#20
|
Didn't work. I created the file, put it in the right place with the right name (the way you told me), enabled it via systemctl but after a reboot I still have to execute the command I found on TJC to get the volume higher.
[Unit] Description=Fix volume settings After=pulseaudio.service Requires=pulseaudio.service [Service] Type=oneshot RemainAfterExit=no ExecStart=/usr/bin/pactl set-sink-volume 1 200% [Install] WantedBy=default.target
The Following User Says Thank You to skanky For This Useful Post: | ||