Headphone jack & audio switching
#9
This turns it off but it stays off when you unplug the headphones:
Code:
amixer -c0 cset numid=28 0

numid=28,iface=MIXER,name='Speaker Switch'
  ; type=BOOLEAN,access=rw------,values=1
  : values=off
So you could script turning it on and off but at least you get privacy.

For manual control a couple quick scripts.  Headphones stay on until you unplug them. 
Create them with your favorite editor someplace in your path, sudo may be required:
Code:
cat spon
#!/bin/bash
# Turn laptop speakers (always card 0) on
amixer -q -c0 cset numid=28 on &> /dev/null

cat spoff
!/bin/bash
# Turn laptop speakers (always card 0) off
amixer -q -c0 cset numid=28 0 &> /dev/null

chmod +x sp*

Alsamixer reads the state of the speaker switch but can't change it.  amixer is in alsa-utils.

Until somebody moves it here's a linked image to a block diagram.  Datasheets are easy to find by searching.
[Image: INrljx6.gif]
  Reply


Messages In This Thread
Headphone jack & audio switching - by ThatGeoGuy - 06-28-2020, 10:58 AM
RE: Headphone jack & audio switching - by bcnaz - 06-28-2020, 11:19 AM
RE: Headphone jack & audio switching - by bcnaz - 06-28-2020, 01:17 PM
RE: Headphone jack & audio switching - by ab1jx - 03-22-2021, 05:26 PM
RE: Headphone jack & audio switching - by ab1jx - 03-23-2021, 11:30 AM
RE: Headphone jack & audio switching - by ab1jx - 03-23-2021, 12:31 PM
RE: Headphone jack & audio switching - by ab1jx - 03-23-2021, 07:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Audio on Armbian Hobbes42 1 845 08-04-2023, 01:18 AM
Last Post: Humid Stylus
  Audio Driver on the pbp korreckj328 5 1,685 05-01-2023, 12:58 PM
Last Post: korreckj328
  Any chance of fixing the audio issues on the new batch PBP(it can't be just me...) crazyquark 0 764 09-30-2022, 10:15 AM
Last Post: crazyquark
  manjaro on pinebook pro low audio quality over jack alcck 1 1,076 09-22-2022, 11:31 AM
Last Post: petersen77
  No audio on Pinebook Pro with Fedora? foobar 1 1,411 08-22-2022, 12:12 PM
Last Post: snorwood
  trouble switching window managers junefish 0 993 01-23-2022, 03:57 PM
Last Post: junefish
Exclamation PSA: Poor audio quality / es8316 codec "stereo enhancement" haskal 4 5,552 01-01-2021, 01:40 AM
Last Post: pato3
  Fixing audio after deep sleep: Work Thread Syonyk 2 4,071 06-29-2020, 10:21 PM
Last Post: Syonyk
  Which distro for reasonable audio? brentashley 3 4,160 06-11-2020, 10:42 PM
Last Post: xmixahlx
  Headphone didn't work linuxfreund 0 1,881 06-08-2020, 08:28 AM
Last Post: linuxfreund

Forum Jump:


Users browsing this thread: 1 Guest(s)