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