kimberly-build/elda/archiso/airootfs/usr/local/bin/livecd-sound

240 lines
6.9 KiB
Text
Raw Normal View History

2021-01-26 13:21:38 +01:00
#!/usr/bin/env bash
#
# SPDX-License-Identifier: GPL-3.0-or-later
usage() {
2023-12-23 10:40:19 +01:00
cat <<-_EOF_
2021-01-26 13:21:38 +01:00
live cd sound helper script.
Usage: livecdsound [OPTION]
OPTIONS
-u, --unmute unmute all sound cards
-p, --pick select a card for speetch output
-h, --help Show this usage message
_EOF_
}
2023-12-23 10:40:19 +01:00
bugout() {
2021-01-26 13:21:38 +01:00
printf "/usr/local/bin/livecdsound: programming error"
stat_fail
}
2023-12-23 10:40:19 +01:00
echo_card_indices() {
if [[ -f /proc/asound/cards ]]; then
2021-01-26 13:21:38 +01:00
sed -n -e's/^[[:space:]]*\([0-7]\)[[:space:]].*/\1/p' /proc/asound/cards
fi
}
# The following functions try to set many controls.
# No card has all the controls and so some of the attempts are bound to fail.
# Because of this, the functions can't return useful status values.
# $1 <card id>
# $2 <control>
# $3 <level>
2023-12-23 10:40:19 +01:00
unmute_and_set_level() {
[[ -n "$3" && -n "$2" && -n "$1" ]] || bugout
2021-01-26 13:21:38 +01:00
systemd-cat -t "livecdsound" printf "Setting: %s on card: %s to %s\n" "$2" "$1" "$3"
systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "$3" unmute
return 0
}
# $1 <card id>
# $2 <control>
2023-12-23 10:40:19 +01:00
mute_and_zero_level() {
[[ -n "$1" && -n "$2" ]] || bugout
2021-01-26 13:21:38 +01:00
systemd-cat -t "livecdsound" printf "Muting control: %s on card: %s\n" "$2" "$1"
systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "0%" mute
return 0
}
# $1 <card ID>
# $2 <control>
# $3 "on" | "off"
2023-12-23 10:40:19 +01:00
switch_control() {
[[ -n "$3" && -n "$1" ]] || bugout
2021-01-26 13:21:38 +01:00
systemd-cat -t "livecdsound" printf "Switching control: %s on card: %s to %s\n" "$2" "$1" "$3"
systemd-cat -t "livecdsound" amixer -c "$1" set "$2" "$3"
return 0
}
# $1 <card ID>
2023-12-23 10:40:19 +01:00
sanify_levels_on_card() {
2021-01-26 13:21:38 +01:00
unmute_and_set_level "$1" "Front" "80%"
unmute_and_set_level "$1" "Master" "80%"
unmute_and_set_level "$1" "Master Mono" "80%"
unmute_and_set_level "$1" "Master Digital" "80%" # E.g., cs4237B
unmute_and_set_level "$1" "Playback" "80%"
unmute_and_set_level "$1" "Headphone" "100%"
unmute_and_set_level "$1" "PCM" "80%"
unmute_and_set_level "$1" "PCM,1" "80%" # E.g., ess1969
unmute_and_set_level "$1" "DAC" "80%" # E.g., envy24, cs46xx
unmute_and_set_level "$1" "DAC,0" "80%" # E.g., envy24
unmute_and_set_level "$1" "DAC,1" "80%" # E.g., envy24
unmute_and_set_level "$1" "Synth" "80%"
unmute_and_set_level "$1" "CD" "80%"
unmute_and_set_level "$1" "PC Speaker" "100%"
mute_and_zero_level "$1" "Mic"
mute_and_zero_level "$1" "IEC958" # Ubuntu #19648
# Intel P4P800-MX
switch_control "$1" "Master Playback Switch" on
switch_control "$1" "Master Surround" on
# Trident/YMFPCI/emu10k1:
unmute_and_set_level "$1" "Wave" "80%"
unmute_and_set_level "$1" "Music" "80%"
unmute_and_set_level "$1" "AC97" "80%"
# DRC:
unmute_and_set_level "$1" "Dynamic Range Compression" "80%"
# Required for HDA Intel (hda-intel):
unmute_and_set_level "$1" "Front" "80%"
# Required for SB Live 7.1/24-bit (ca0106):
unmute_and_set_level "$1" "Analog Front" "80%"
# Required at least for Via 823x hardware on DFI K8M800-MLVF Motherboard
switch_control "$1" "IEC958 Capture Monitor" off
# Required for hardware allowing toggles for AC97 through IEC958,
# valid values are 0, 1, 2, 3. Needs to be set to 0 for PCM1.
unmute_and_set_level "$1" "IEC958 Playback AC97-SPSA" "0"
# Required for newer Via hardware
unmute_and_set_level "$1" "VIA DXS,0" "80%"
unmute_and_set_level "$1" "VIA DXS,1" "80%"
unmute_and_set_level "$1" "VIA DXS,2" "80%"
unmute_and_set_level "$1" "VIA DXS,3" "80%"
# Required on some notebooks with ICH4:
switch_control "$1" "Headphone Jack Sense" off
switch_control "$1" "Line Jack Sense" off
# Some machines need one or more of these to be on;
# others need one or more of these to be off:
switch_control "$1" "Audigy Analog/Digital Output Jack" on
switch_control "$1" "SB Live Analog/Digital Output Jack" on
# D1984 -- Thinkpad T61/X61
switch_control "$1" "Speaker" on
switch_control "$1" "Headphone" on
# HDA-Intel w/ "Digital" capture mixer (See Ubuntu #193823)
unmute_and_set_level "$1" "Digital" "80%"
return 0
}
# $1 <card ID> | "all"
2023-12-23 10:40:19 +01:00
sanify_levels() {
2021-01-26 13:21:38 +01:00
local ttsdml_returnstatus=0
local card
case "$1" in
2023-12-23 10:40:19 +01:00
all)
for card in $(echo_card_indices); do
sanify_levels_on_card "$card" || ttsdml_returnstatus=1
done
;;
*)
sanify_levels_on_card "$1" || ttsdml_returnstatus=1
;;
2021-01-26 13:21:38 +01:00
esac
2023-12-23 10:40:19 +01:00
return "$ttsdml_returnstatus"
2021-01-26 13:21:38 +01:00
}
# List all cards that *should* be usable for PCM audio. In my experience,
# the console speaker (handled by the pcsp driver) isn't a suitable playback
# device, so we'll exclude it.
2023-12-23 10:40:19 +01:00
list_non_pcsp_cards() {
2021-01-26 13:21:38 +01:00
for card in $(echo_card_indices); do
local cardfile="/proc/asound/card${card}/id"
2023-12-23 10:40:19 +01:00
if [[ -r "$cardfile" && -f "$cardfile" && "$(cat "$cardfile")" != pcsp ]]; then
2021-01-26 13:21:38 +01:00
echo "$card"
fi
done
}
# Properly initialize the sound card so that we have audio at boot.
2023-12-23 10:40:19 +01:00
unmute_all_cards() {
2021-01-26 13:21:38 +01:00
sanify_levels all
}
is_numeric() {
2023-12-23 10:40:19 +01:00
local str="$1"
2021-01-26 13:21:38 +01:00
[[ "$str" =~ ^[0-9]+$ ]]
}
set_default_card() {
2023-12-23 10:40:19 +01:00
local card="$1"
sed -e "s/%card%/$card/g" </usr/local/share/livecd-sound/asound.conf.in \
>/etc/asound.conf
2021-01-26 13:21:38 +01:00
}
play_on_card() {
2023-12-23 10:40:19 +01:00
local card="$1" file="$2"
2021-01-26 13:21:38 +01:00
aplay -q "-Dplughw:$card,0" "$file"
}
# If there are multiple usable sound cards, prompt the user to choose one,
# using auditory feedback.
2023-12-23 10:40:19 +01:00
pick_a_card() {
2021-01-26 13:21:38 +01:00
set -f
usable_cards="$(list_non_pcsp_cards)"
2023-12-23 10:40:19 +01:00
num_usable_cards="$(wc -w <<<"$usable_cards")"
2021-01-26 13:21:38 +01:00
2023-12-23 10:40:19 +01:00
if (( num_usable_cards == 1 )); then
2021-01-26 13:21:38 +01:00
systemd-cat -t "livecdsound" printf "Only one sound card is detected\n"
exit 0
fi
systemd-cat -t "livecdsound" printf "multiple sound cards detected\n"
2023-12-23 10:40:19 +01:00
for card in "${usable_cards[@]}"; do
2021-01-26 13:21:38 +01:00
if ! is_numeric "$card"; then
continue
fi
2023-12-23 10:40:19 +01:00
play_on_card "$card" /usr/share/livecd-sounds/pick-a-card.wav &
2021-01-26 13:21:38 +01:00
done
wait
sleep 1
2023-12-23 10:40:19 +01:00
for card in "${usable_cards[@]}"; do
2021-01-26 13:21:38 +01:00
if ! is_numeric "$card"; then
continue
2023-12-23 10:40:19 +01:00
fi
play_on_card "$card" /usr/share/livecd-sounds/beep.wav
if read -r -t 10; then
systemd-cat -t "livecdsound" printf "Selecting %s sound card as default\n" "$card"
set_default_card "$card"
break
fi
done
2021-01-26 13:21:38 +01:00
}
2023-12-23 10:40:19 +01:00
if (( $# == 0 )); then
2021-01-26 13:21:38 +01:00
echo "error: No argument passed."
exit 1
fi
while [[ "${1}" != "" ]]; do
case ${1} in
-h|--help)
usage
exit
;;
-u|--unmute)
systemd-cat -t "livecdsound" printf "Unmuting all cards"
unmute_all_cards
;;
-p|--pick)
pick_a_card
;;
*)
echo "error: Unsupported argument"
usage
exit 1
;;
esac
shift
done