5 lines
101 B
Bash
Executable file
5 lines
101 B
Bash
Executable file
#!/bin/bash
|
|
|
|
pactl subscribe | awk '/new/ && /sink-input/' while read -r event;do
|
|
echo "test"
|
|
done
|