Skip to content

Instantly share code, notes, and snippets.

@nerevar009
Created January 29, 2019 07:17
Show Gist options
  • Save nerevar009/12e534aa7d9591989094cc4ee532739b to your computer and use it in GitHub Desktop.
Save nerevar009/12e534aa7d9591989094cc4ee532739b to your computer and use it in GitHub Desktop.
#!/bin/bash
setsinkport () {
if [ $(</var/log/headphones_plugged) == 1 ]
then
pactl set-sink-port @DEFAULT_SINK@ "[Out] Headphones"
else
pactl set-sink-port @DEFAULT_SINK@ "[Out] Speaker"
fi
}
setsinkport
while inotifywait -e close_write /var/log/headphones_plugged; do
setsinkport
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment