mirror of
https://github.com/Ajetski/dotfiles.git
synced 2025-09-30 09:53:17 -09:00
9 lines
147 B
Bash
Executable File
9 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pactl list | \
|
|
grep -e media.name | \
|
|
grep -v -e recStream -e playStream -e Playback | \
|
|
tail -n 1 | \
|
|
sed -r 's/.*"(.*)".*/\1/'
|
|
|