mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-01-16 03:05:26 +00:00
10 lines
133 B
Bash
Executable file
10 lines
133 B
Bash
Executable file
#!/bin/sh
|
|
|
|
value=$(amixer get Capture | grep '\[off\]')
|
|
|
|
if [ "$value" == "" ]; then
|
|
echo " ";
|
|
else
|
|
echo "%{F#666} ";
|
|
fi
|