diff options
-rw-r--r-- | .alsa/x1-bluetooth | 21 | ||||
-rw-r--r-- | .alsa/x1-hdmi | 7 | ||||
-rw-r--r-- | .alsa/x1-internal | 14 |
3 files changed, 42 insertions, 0 deletions
diff --git a/.alsa/x1-bluetooth b/.alsa/x1-bluetooth new file mode 100644 index 0000000..51fb3f4 --- /dev/null +++ b/.alsa/x1-bluetooth @@ -0,0 +1,21 @@ +pcm.btspeaker { + type plug + slave { + pcm { + type bluealsa + interface hci0 + device 00:11:67:01:1C:9B + profile "a2dp" + } + } + hint { + show on + description "BT Headset" + } +} + +pcm.!default { + type plug + slave.pcm "btspeaker" +} + diff --git a/.alsa/x1-hdmi b/.alsa/x1-hdmi new file mode 100644 index 0000000..822f344 --- /dev/null +++ b/.alsa/x1-hdmi @@ -0,0 +1,7 @@ +# map default output to hardware card 0, device 7 (analog) +pcm.!default { + type hw + card 0 + device 7 +} + diff --git a/.alsa/x1-internal b/.alsa/x1-internal new file mode 100644 index 0000000..abc6a85 --- /dev/null +++ b/.alsa/x1-internal @@ -0,0 +1,14 @@ +# map default output to hardware card 0, device 0 (analog) +pcm.!default { + type hw + card 0 + device 0 +} + +# same for the controls (alsamixer) +ctl.!default { + type hw + card 0 + device 0 +} + |