You are not logged in.
Pages: 1
Hi there, I've been using USB headset for long time and it has gave me nothing but problems, latest was with firefox until I finally stumbled upon a solution on how to force firefox (or virtually any app) to use your usb headset as a sound device for the current session. Hope this helps,
export ALSA_CARD=<sndcardname>
<application>you need to put your usb soundcard's name there, for me it's Headset so my export line looks like this:
export ALSA_CARD=Headset
firefoxIf you want to make it even more automatised, you can just make a wrapper for firefox (or any other app) like this,
#!/bin/bash
export ALSA_CARD=Headset; firefox $1Hope it helps.
Offline
Pages: 1