/
/
/
1# /etc/default/snapclient â managed by Ansible
2# Use `_snapclient_device` computed in tasks to either 'default' (mono) or a raw hw device.
3
4SNAPCLIENT_OPTS="\
5--name {{ snapcast_client_name | quote }} \
6{% if snapcast_server_host | length > 0 %}--host {{ snapcast_server_host | quote }} {% endif %}\
7--device {{ _snapclient_device | quote }} \
8{{ snapcast_extra_opts }}"
9
10# Examples of extras:
11# --latency 0
12# --buffer 1000
13# --mixer softvol
14
15