Skip to content

Instantly share code, notes, and snippets.

@yrns
Created August 29, 2014 20:57
Show Gist options
  • Save yrns/173fdeb942efa5b1b6fb to your computer and use it in GitHub Desktop.
Save yrns/173fdeb942efa5b1b6fb to your computer and use it in GitHub Desktop.
Make the last audio sink the default so the volume buttons work on my keyboard when bluetooth speakers are connected...
#!/bin/sh
pacmd set-default-sink `pacmd list-sinks | grep index | tail -n 1 | perl -ne 'print "$1\n" if /(\d+)/;'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment