Guest User

system.pa

a guest
Jun 11th, 2018
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. #!/usr/bin/pulseaudio -nF
  2. #
  3. # This file is part of PulseAudio.
  4. #
  5. # PulseAudio is free software; you can redistribute it and/or modify it
  6. # under the terms of the GNU Lesser General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # PulseAudio is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. # General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Lesser General Public License
  16. # along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
  17.  
  18. # This startup script is used only if PulseAudio is started in system
  19. # mode.
  20.  
  21. ### Automatically load driver modules depending on the hardware available
  22. .ifexists module-udev-detect.so
  23. load-module module-udev-detect
  24. .else
  25. ### Use the static hardware detection module (for systems that lack udev/hal support)
  26. load-module module-detect
  27. .endif
  28.  
  29. ### Load several protocols
  30. .ifexists module-esound-protocol-unix.so
  31. load-module module-esound-protocol-unix
  32. .endif
  33. load-module module-native-protocol-unix
  34.  
  35. ### Automatically restore the volume of streams and devices
  36. load-module module-stream-restore
  37. load-module module-device-restore
  38.  
  39. ### Automatically restore the default sink/source when changed by the user
  40. ### during runtime
  41. ### NOTE: This should be loaded as early as possible so that subsequent modules
  42. ### that look up the default sink/source get the right value
  43. load-module module-default-device-restore
  44.  
  45. ### Automatically move streams to the default sink if the sink they are
  46. ### connected to dies, similar for sources
  47. load-module module-rescue-streams
  48.  
  49. ### Make sure we always have a sink around, even if it is a null sink.
  50. load-module module-always-sink
  51.  
  52. ### Automatically suspend sinks/sources that become idle for too long
  53. load-module module-suspend-on-idle
  54.  
  55. ### Enable positioned event sounds
  56. load-module module-position-event-sounds
Add Comment
Please, Sign In to add comment