summaryrefslogtreecommitdiffstats
path: root/.asoundrc
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-01-20 18:10:18 -0500
committerLuke Smith <luke@lukesmith.xyz>2020-01-20 18:10:18 -0500
commit6c8147ea6040a8f63aea4d1da8b3e8e711b6d24f (patch)
tree53aa3edffc6c3762e317c5daa7e7d365741e0df1 /.asoundrc
parente97d28bdd81fada98ab2aba173156cac9780f693 (diff)
downloadeibhear-6c8147ea6040a8f63aea4d1da8b3e8e711b6d24f.tar.gz
eibhear-6c8147ea6040a8f63aea4d1da8b3e8e711b6d24f.tar.zst
eibhear-6c8147ea6040a8f63aea4d1da8b3e8e711b6d24f.zip
Revert "move alsa config and add env variable"
This reverts commit 2149d1ebb7c5aad18dfd272afd21bf9502675255.
Diffstat (limited to '.asoundrc')
-rw-r--r--.asoundrc21
1 files changed, 21 insertions, 0 deletions
diff --git a/.asoundrc b/.asoundrc
new file mode 100644
index 0000000..38722f0
--- /dev/null
+++ b/.asoundrc
@@ -0,0 +1,21 @@
+# Find and use input "Microphone" for input
+pcm.usb
+{
+ type hw
+ card Microphone
+}
+pcm.!default
+{
+ type asym
+ playback.pcm
+ {
+ # Use the dmix plug to allow multiple outputs.
+ type plug
+ slave.pcm "dmix"
+ }
+ capture.pcm
+ {
+ type plug
+ slave.pcm "usb"
+ }
+}