Advertisement
plirof2

bash set ALSA loopback

Nov 21st, 2023
888
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. VOL=80;
  2. VOL255=230;
  3.  
  4. amixer set "Loopback Mixing" Enabled;
  5. amixer set "Auto-Mute Mode" Enabled;
  6. amixer set "Input Source" 'Line';
  7. amixer set "Input Source",1 'Line';
  8.  
  9. amixer set "Master" 80;
  10. amixer set "PCM" $VOL255;
  11. amixer set "Front" $VOL;
  12. amixer set "Line" $VOL;
  13. amixer set "Headphone" $VOL;
  14.  
  15. amixer set "Capture" $VOL;
  16.  
  17. ------------------------------------------
  18.  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement