blob: f7b3cb18ec60a111a863d44dce82f82da08a1ec7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
vol="$(mixer vol | awk '{print $7}' | cut -d ':' -f1)"
if [ "$vol" -gt "70" ]; then
icon=""
elif [ "$vol" -gt "30" ]; then
icon=""
elif [ "$vol" -gt "0" ]; then
icon=""
else
icon="婢"
fi
mic="$(mixer rec | awk '{print $7}' | cut -d ':' -f1)"
if [ "$mic" -gt "0" ]; then
micon=""
else
micon=""
fi
echo "$icon | $micon"
|