9 lines
110 B
Bash
9 lines
110 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
if amixer get Capture | grep '\[off\]' > /dev/null
|
||
|
then
|
||
|
echo ""
|
||
|
else
|
||
|
echo ""
|
||
|
fi
|