10 lines
132 B
Plaintext
10 lines
132 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
sink=$(pacmd list-sinks \
|
||
|
| grep "bluez.alias" \
|
||
|
| cut -d' ' -f3 \
|
||
|
| tr -d \" \
|
||
|
| xargs)
|
||
|
|
||
|
echo "$sink"
|