Advertisement
Guest User

Untitled

a guest
Jun 15th, 2014
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. pcm.bt {
  2. type bluetooth
  3. device XX:XX:XX:XX:XX:XX
  4. profile "auto"
  5. }
  6.  
  7. pcm.wire {
  8. type hw
  9. card 0
  10. }
  11.  
  12. pcm.multi {
  13. type multi;
  14. slaves.a.pcm "wire"
  15. slaves.b.pcm "bt"
  16. slaves.a.channels 2
  17. slaves.b.channels 2
  18.  
  19. bindings.0.slave a
  20. bindings.0.channel 0
  21. bindings.1.slave a
  22. bindings.1.channel 1
  23.  
  24. bindings.2.slave b
  25. bindings.2.channel 0
  26. bindings.3.slave b
  27. bindings.3.channel 1
  28. }
  29.  
  30. pcm.both {
  31. type route
  32. slave.pcm "multi"
  33.  
  34. ttable.0.0 1
  35. ttable.1.1 1
  36.  
  37. ttable.0.2 1
  38. ttable.1.3 1
  39. }
  40.  
  41. pcm.both_softvol {
  42. type softvol
  43. slave.pcm "both"
  44. control.name "PCM"
  45. control.card 0
  46. resolution 100
  47. }
  48.  
  49. pcm.!default plug:both_softvol
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement