#!/usr/bin/bash # choose pulseaudio sink via rofi or dmenu # changes default sink and moves all streams to that sink #https://gist.github.com/Nervengift/844a597104631c36513c?permalink_comment_id=1826282 sink=$(ponymix -t sink list|awk '/^sink/ {s=$1" "$2;getline;gsub(/^ +/,"",$0);print s" "$0}'|rofi -dmenu -theme '~/.config/rofi/volume/volume.rasi' -mesg '󱡫 Sink Switcher' -p 'pulseaudio sink:' -location 6 -width 100|grep -Po '[0-9]+(?=:)') && ponymix set-default -d $sink && for input in $(ponymix list -t sink-input|grep -Po '[0-9]+(?=:)');do echo "$input -> $sink" ponymix -t sink-input -d $input move $sink done