mirror of
https://github.com/Ajetski/dotfiles.git
synced 2025-09-30 13:53:17 -09:00
10 lines
194 B
Bash
Executable File
10 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pactl list | \
|
|
rg -e media.name | \
|
|
rg -v -e recStream -e playStream -e Playback -e playback -e RecordStream | \
|
|
tail -n 1 | \
|
|
sed -r 's/^.*= "(.*)"$/\1/' | \
|
|
sed 's/\\"/"/g'
|
|
|