2022-01-16 18:20:39 +00:00
|
|
|
---
|
|
|
|
title: "basics"
|
|
|
|
tags: [ "Documentation", "sound" ]
|
|
|
|
---
|
2020-03-31 02:22:59 +00:00
|
|
|
# Pulse
|
|
|
|
If you have pulse, use pulse.
|
|
|
|
Check with `which pulseaudio`. No output means you need to use alsa (below).
|
|
|
|
|
2020-01-02 00:04:35 +00:00
|
|
|
# Volume Control
|
|
|
|
|
|
|
|
> pactl set sink @DEFAULT_SINK@ +5%
|
|
|
|
|
|
|
|
Find working outputs:
|
|
|
|
|
|
|
|
> aplay -l
|
|
|
|
|
|
|
|
#Sound Settings
|
|
|
|
|
|
|
|
Surround.5 seems best.
|
|
|
|
|
|
|
|
|
|
|
|
# Find what sound settings exist
|
|
|
|
|
|
|
|
amixer scontrols
|
|
|
|
|
|
|
|
# Change a sound setting
|
|
|
|
|
|
|
|
> amixer set Master 5%-
|
|
|
|
|
|
|
|
# Restart everything
|
|
|
|
|
|
|
|
pulseaudio -k && sudo alsa force-reload
|
|
|
|
|
2020-03-31 02:22:59 +00:00
|
|
|
# Alsa
|
|
|
|
|
|
|
|
Toggle, mute, increase or decrase audio:
|
|
|
|
|
|
|
|
> amixer sset Master toggle
|
|
|
|
|
|
|
|
> amixer sset Master mute
|
|
|
|
|
|
|
|
> amixer sset Master 5%+
|
|
|
|
|
|
|
|
> amixer sset Master 5%-
|
|
|
|
|
2021-04-30 21:36:56 +00:00
|
|
|
# Finicky Sound Cards
|
|
|
|
|
|
|
|
Start with:
|
|
|
|
|
|
|
|
> alsamixer
|
|
|
|
|
|
|
|
Then press `F6` to see available sound cards.
|
|
|
|
If you find a sound card called 'PinePhone', then you can select an audio source there, and adjust with:
|
|
|
|
|
|
|
|
> amixer -c PinePhone set 'Headphone' 50%
|
2020-03-31 02:22:59 +00:00
|
|
|
|