From 6c8147ea6040a8f63aea4d1da8b3e8e711b6d24f Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 20 Jan 2020 18:10:18 -0500 Subject: Revert "move alsa config and add env variable" This reverts commit 2149d1ebb7c5aad18dfd272afd21bf9502675255. --- .asoundrc | 21 +++++++++++++++++++++ .config/alsa/asoundrc | 21 --------------------- .profile | 1 - 3 files changed, 21 insertions(+), 22 deletions(-) create mode 100644 .asoundrc delete mode 100644 .config/alsa/asoundrc 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" + } +} diff --git a/.config/alsa/asoundrc b/.config/alsa/asoundrc deleted file mode 100644 index 38722f0..0000000 --- a/.config/alsa/asoundrc +++ /dev/null @@ -1,21 +0,0 @@ -# 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" - } -} diff --git a/.profile b/.profile index 5a078e4..c4bfd33 100644 --- a/.profile +++ b/.profile @@ -24,7 +24,6 @@ export WGETRC="$HOME/.config/wget/wgetrc" export INPUTRC="$HOME/.config/inputrc" export ZDOTDIR="$HOME/.config/zsh" export PASSWORD_STORE_DIR="$HOME/.local/share/password-store" -export ALSA_CONFIG_PATH="$HOME/.config/alsa/asoundrc" # Other program settings: export DICS="/usr/share/stardict/dic/" -- cgit v1.3.1