Question on audio output
#5
I haven't yet tried the asound.state update, but I use this shell script to turn on or off my internal speakers when I want to use headphones:


Code:
> cat spkr

#!/bin/sh

case $1 in

off)
   amixer -q set "External Speaker" mute
   ;;
on)
   amixer -q set "External Speaker" unmute
   ;;
*)
   echo "syntax: spkr on|off"
   ;;
esac


Messages In This Thread
Question on audio output - by cootcraig - 07-19-2017, 07:59 AM
RE: Question on audio output - by cootcraig - 07-19-2017, 09:20 AM
RE: Question on audio output - by brentashley - 07-19-2017, 10:20 AM
RE: Question on audio output - by pfeerick - 07-22-2017, 01:10 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Has anyone gotten HDMI output? rpm 1 3,028 12-10-2018, 11:43 PM
Last Post: cvmiller
  No HDMI output, hardware or software issue? TAO.vision 9 13,887 05-15-2018, 12:36 AM
Last Post: fbn
  question about my order ta2025 3 5,929 05-04-2017, 02:22 PM
Last Post: tllim

Forum Jump:


Users browsing this thread: 1 Guest(s)