genode/repos/gems/sculpt/launcher/audio
Josef Söntgen ac3202e554 sculpt: raise volume in audio launcher
The default mixer launcher limits the volume to 50%, so raise the
driver's volume to the max to be audible on certain systems where
otherwise audio is barely recognizable.

While there, fix the wrong reporting attribute as well.

Issue #5174.
2024-04-25 15:43:02 +02:00

19 lines
736 B
Plaintext

<launcher pkg="bsd_audio_drv" priority="0">
<config report_mixer="yes" record_play="yes">
<!-- value range [0,255] -->
<mixer field="outputs.master" value="255"/>
<!-- look into mixer report for source selection -->
<mixer field="record.enable" value="on"/>
<mixer field="record.adc-0:1_source" value="sel2"/>
<mixer field="record.adc-0:1" value="160"/>
</config>
<route>
<service name="Platform"> <parent label="audio"/> </service>
<service name="Record"> <child name="mixer"/> </service>
<service name="Play"> <child name="mixer"/> </service>
<service name="Report"> <parent/> </service>
<service name="RM"> <parent/> </service>
</route>
</launcher>