Advertisement
Guest User

Untitled

a guest
Oct 10th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1. [root@Sailfish /]# cat etc/pulse/*i9100g*
  2. #!/usr/bin/pulseaudio -nF
  3. #
  4. # This file is part of PulseAudio.
  5. #
  6. # PulseAudio is free software; you can redistribute it and/or modify it
  7. # under the terms of the GNU Lesser General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # PulseAudio is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. # General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public License
  17. # along with PulseAudio; if not, write to the Free Software Foundation,
  18. # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  19.  
  20. # This startup script is used only if PulseAudio is started per-user
  21. # (i.e. not in system mode)
  22.  
  23. .nofail
  24.  
  25. .fail
  26.  
  27. load-module module-droid-keepalive
  28.  
  29. load-module module-meego-parameters cache=1 directory=/var/lib/nemo-pulseaudio-parameters use_voice=false
  30. load-module module-meego-mainvolume virtual_stream=true
  31.  
  32. ### Automatically restore the volume of streams
  33. load-module module-stream-restore-nemo restore_device=no restore_volume=yes restore_muted=no route_table=/etc/pulse/x-maemo-route.table fallback_table=/etc/pulse/x-maemo-stream-restore.table use_voice=false sink_volume_table=/etc/pulse/x-maemo-sink-volume.table
  34.  
  35. load-module module-match table=/etc/pulse/x-maemo-match.table key=application.name
  36.  
  37. ### Automatically augment property information from .desktop files
  38. ### stored in /usr/share/application
  39. load-module module-augment-properties
  40.  
  41. load-module module-null-sink sink_name=sink.null rate=44100
  42.  
  43. load-module module-droid-card rate=44100 mute_routing_before=24576 mute_routing_after=4096
  44.  
  45. load-module module-null-sink sink_name=sink.fake.sco rate=8000 channels=1
  46. load-module module-null-source source_name=source.fake.sco rate=8000 channels=1
  47. load-module module-bluez4-discover sco_sink=sink.fake.sco sco_source=source.fake.sco
  48.  
  49. load-module module-droid-glue
  50.  
  51. load-module module-policy-enforcement
  52.  
  53. load-module module-role-ducking trigger_roles=alarm,notification,warning ducking_roles=x-maemo volume=-200dB
  54.  
  55. ### Load several protocols
  56. .ifexists module-esound-protocol-unix.so
  57. load-module module-esound-protocol-unix
  58. .endif
  59. load-module module-native-protocol-unix
  60.  
  61. ### Network access (may be configured with paprefs, so leave this commented
  62. ### here if you plan to use paprefs)
  63. #load-module module-esound-protocol-tcp
  64. #load-module module-native-protocol-tcp
  65.  
  66. ### Load the RTP receiver module (also configured via paprefs, see above)
  67. #load-module module-rtp-recv
  68.  
  69. ### Load the RTP sender module (also configured via paprefs, see above)
  70. #load-module module-null-sink sink_name=rtp format=s16be channels=2 rate=44100 sink_properties="device.description='RTP Multicast Sink'"
  71. #load-module module-rtp-send source=rtp.monitor
  72.  
  73. ### Load additional modules from GConf settings. This can be configured with the paprefs tool.
  74. ### Please keep in mind that the modules configured by paprefs might conflict with manually
  75. ### loaded modules.
  76. .ifexists module-gconf.so
  77. .nofail
  78. load-module module-gconf
  79. .fail
  80. .endif
  81.  
  82. ### Make sure we always have a sink around, even if it is a null sink.
  83. load-module module-always-sink
  84.  
  85. ### Honour intended role device property
  86. load-module module-intended-roles
  87.  
  88. ### Automatically suspend sinks/sources that become idle for too long
  89. load-module module-suspend-on-idle timeout=1
  90.  
  91. ### If autoexit on idle is enabled we want to make sure we only quit
  92. ### when no local session needs us anymore.
  93. .ifexists module-console-kit.so
  94. load-module module-console-kit
  95. .endif
  96. .ifexists module-systemd-login.so
  97. load-module module-systemd-login
  98. .endif
  99.  
  100. ### Load DBus protocol
  101. .ifexists module-dbus-protocol.so
  102. load-module module-dbus-protocol
  103. .endif
  104.  
  105. load-module module-switch-on-port-available
  106.  
  107. ### Make some devices default
  108. set-default-sink sink.primary
  109. set-default-source source.primary
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement