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