Advertisement
Guest User

Untitled

a guest
May 18th, 2020
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1.  
  2.  
  3. function move_sinks_to_new_default {
  4. DEFAULT_SINK=$1
  5. pacmd list-sink-inputs | grep index: | grep -o '[0-9]\+' | while read SINK
  6. do
  7. pacmd move-sink-input $SINK $DEFAULT_SINK
  8. done
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement