You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

26 lines
777B

  1. {{ansible_managed|comment}}
  2. {% if pulseaudio_load_system_config %}
  3. .include /etc/pulse/default.pa
  4. {% endif %}
  5. .fail
  6. {% if pulseaudio_jack_sink_enabled %}
  7. load-module module-jack-sink channels={{pulseaudio_jack_sink_channels}} client_name="{{pulseaudio_jack_sink_client_name}}" connect=0
  8. {% endif %}
  9. {% if pulseaudio_jack_source_enabled %}
  10. load-module module-jack-source channels={{pulseaudio_jack_source_channels}} client_name="{{pulseaudio_jack_source_client_name}}" connect=0
  11. {% endif %}
  12. {% if pulseaudio_default_sink is defined %}
  13. set-default-sink {{pulseaudio_default_sink}}
  14. {% endif %}
  15. {% if pulseaudio_default_source is defined %}
  16. set-default-source {{pulseaudio_default_source}}
  17. {% endif %}
  18. .ifexists module-x11-publish.so
  19. load-module module-x11-publish
  20. .endif