mybin

my ~/bin
git clone https://a3nm.net/git/mybin/
Log | Files | Refs | README

palsi (191B)


      1 #!/bin/bash
      2 
      3 # list pulseaudio sink input, client, client string, grepping on $
      4 
      5 pacmd list-sink-inputs |
      6   grep -E 'index:|client:' | paste -d" " - - |
      7   grep -i "$1" | cut -d' ' -f6,8,9-
      8 
      9