2025-05-10 21:58:58 +08:00

14 lines
191 B
Bash
Executable File

#!/bin/bash
v=$1
echo "Set HPOUT volume, range 0->33"
if [ ! -n "$v" ] ; then
echo "please enter a volume"
else
echo "set volume: $v"
amixer set "Output 1" $v
amixer get "Output 1"
fi