Add audio out menu

Signed-off-by: Miles Alan <m@milesalan.com>
master
lightship 5 years ago committed by Miles Alan
parent 6777dbdebd
commit e7b9c8dc02
  1. 1
      scripts/core/sxmo_appmenu.sh
  2. 30
      scripts/core/sxmo_audiooutmenu.sh
  3. 8
      scripts/core/sxmo_vol.sh

@ -52,6 +52,7 @@ programchoicesinit() {
Bar Toggle ^ 1 ^ key Alt+b
Rotate ^ 1 ^ rotate
Wifi ^ 0 ^ st -e "nmtui"
Audio Out ^ 0 ^ sxmo_audiooutmenu.sh
Upgrade Pkgs ^ 0 ^ st -e sxmo_upgrade.sh
")" && WINNAME=Config && return

@ -0,0 +1,30 @@
#!/usr/bin/env sh
pidof svkbd-sxmo || svkbd-sxmo &
OUTINPUT="$(
echo "speaker
headphones
earpiece
none
Close Menu" | dmenu -p "Audio Out" -c -fn "Terminus-30" -l 20
)"
pkill svkbd-sxmo
[[ "Close Menu" == "$OUTINPUT" ]] && exit 0
SPEAKER="Line Out"
HEADPHONE="Headphone"
EARPIECE="Earpiece"
amixer set "$SPEAKER" mute > /dev/null
amixer set "$HEADPHONE" mute > /dev/null
amixer set "$EARPIECE" mute > /dev/null
if [[ "$OUTINPUT" = "speaker" ]]; then
amixer set "$SPEAKER" unmute > /dev/null
elif [[ "$OUTINPUT" = "headphones" ]]; then
amixer set "$HEADPHONE" unmute > /dev/null
elif [[ "$OUTINPUT" = "earpiece" ]]; then
amixer set "$EARPIECE" unmute > /dev/null
fi

@ -1,7 +1,7 @@
#!/usr/bin/env sh
device() {
amixer sget Earpiece | grep -E '[[]on[]]' > /dev/null && echo Earpiece && return
amixer sget Headphone > /dev/null && echo Headphone || echo Speaker
amixer sget Headphone > /dev/null && echo Headphone || echo "Line Out"
}
notify() {
@ -16,15 +16,15 @@ notify() {
}
up() {
amixer set $(device) 1+
amixer set "$(device)" 1+
notify
}
down() {
amixer set $(device) 1-
amixer set "$(device)" 1-
notify
}
setvol() {
amixer set $(device) $1
amixer set "$(device)" $1
}
$@

Loading…
Cancel
Save