|
| 1 | +--- |
| 2 | +date: 2023-12-17 |
| 3 | +categories: |
| 4 | + - Ubuntu |
| 5 | + - Sound |
| 6 | + - PulseAudio |
| 7 | + - Article |
| 8 | +tags: |
| 9 | + - Ubuntu |
| 10 | + - Sound |
| 11 | + - Article |
| 12 | +--- |
| 13 | + |
| 14 | +# Auto-selects sound devices on login |
| 15 | + |
| 16 | +## Motivation |
| 17 | + |
| 18 | +The Ubuntu prioritizes the USB sound card over the internal sound card. This is not always what one wants. |
| 19 | +Some examples: |
| 20 | + |
| 21 | +1. USB camera with not-so-good microphone, when a better microphone is connected to the internal sound card. |
| 22 | +2. USB microphone with option to monitor recorded sound, that is recognized as possible output, when speakers are connected to the internal sound card. |
| 23 | + |
| 24 | +In both scenarios, the system will select the USB device instead of the internal sound card. This is not always what one wants. |
| 25 | + |
| 26 | +## Solution |
| 27 | + |
| 28 | +!!! note |
| 29 | + |
| 30 | + This solution is tested on Ubuntu 22.04 with PulseAudio |
| 31 | + |
| 32 | + |
| 33 | +Set the preferred sound card in the system settings. Then run `pactl info` to get the name of preferred sound device. |
| 34 | + |
| 35 | +```bash |
| 36 | +$ pactl info |
| 37 | +Server String: /run/user/1000/pulse/native |
| 38 | +Library Protocol Version: 35 |
| 39 | +Server Protocol Version: 35 |
| 40 | +Is Local: yes |
| 41 | +Client Index: 27 |
| 42 | +Tile Size: 65472 |
| 43 | +User Name: czaki |
| 44 | +Host Name: grzesiek-komputer |
| 45 | +Server Name: pulseaudio |
| 46 | +Server Version: 15.99.1 |
| 47 | +Default Sample Specification: s16le 2ch 44100Hz |
| 48 | +Default Channel Map: front-left,front-right |
| 49 | +Default Sink: alsa_output.pci-0000_00_1f.3.analog-stereo |
| 50 | +Default Source: alsa_input.pci-0000_00_1f.3.analog-stereo |
| 51 | +Cookie: 057c:b811 |
| 52 | +``` |
| 53 | + |
| 54 | +For single-line output one could use `pactl get-default-source` and `pactl get-default-sink` commands. |
| 55 | + |
| 56 | +Then create a file `~/.local/bin/sound.sh` with the following content, add execution permissions (`chmod +x ./sound.sh`) and add it to the startup applications: |
| 57 | + |
| 58 | +```bash |
| 59 | +#!/bin/bash |
| 60 | +pactl set-default-source 'alsa_input.pci-0000_00_1f.3.analog-stereo' |
| 61 | +pactl set-default-sink 'alsa_output.pci-0000_00_1f.3.analog-stereo' |
| 62 | +``` |
| 63 | + |
| 64 | +Replace target devices with the ones from `pactl info` output. |
| 65 | + |
| 66 | + |
| 67 | +## Additional scripts |
| 68 | + |
| 69 | +Here is my script that allows one to switch between sound devices build based on above information. |
| 70 | + |
| 71 | +If a Bluetooth device is connected then switch only the input device, otherwise switch both input and output devices between built-in and USB ones. |
| 72 | +You may need to adjust the names of the devices to your needs. |
| 73 | + |
| 74 | +```bash |
| 75 | +#!/bin/bash |
| 76 | + |
| 77 | +LANG=en_US # to get consistent output from pactl |
| 78 | + |
| 79 | +BUILDIN_OUTPUT=$(pactl list sinks | grep -oP "Name: \K.*pci.*") |
| 80 | +BUILDIN_INPUT=$(pactl list sources | grep -oP "Name: \K.*input.*pci.*") |
| 81 | +NCX_USB_OUTPUT=$(pactl list sinks | grep -oP "Name: \K.*NCX.*") |
| 82 | +NCX_USB_INPUT=$(pactl list sources | grep -oP "Name: \K.*input.*NCX.*") |
| 83 | +BLUEZ=$(pactl list sinks | grep -oP "Name: \K.*bluez.*") |
| 84 | + |
| 85 | + |
| 86 | +if [[ -n $BLUEZ ]]; then |
| 87 | + if [[ -n $NCX_USB_INPUT ]] && [[ $BUILDIN_INPUT == *$(pactl get-default-source)* ]]; then |
| 88 | + pactl set-default-source $NCX_USB_INPUT |
| 89 | + else |
| 90 | + pactl set-default-source $BUILDIN_INPUT |
| 91 | + fi |
| 92 | +else |
| 93 | + if [[ -n $NCX_USB_INPUT ]] && [[ $BUILDIN_INPUT == *$(pactl get-default-source)* ]]; then |
| 94 | + pactl set-default-sink $NCX_USB_OUTPUT |
| 95 | + pactl set-default-source $NCX_USB_INPUT |
| 96 | + else |
| 97 | + pactl set-default-sink $BUILDIN_OUTPUT |
| 98 | + pactl set-default-source $BUILDIN_INPUT |
| 99 | + fi |
| 100 | +fi |
| 101 | +``` |
| 102 | + |
| 103 | + |
0 commit comments