Samuel Shuert | 3f82866 | 2024-02-10 20:45:50 -0500 | [diff] [blame^] | 1 | #!/bin/bash |
2 | |||||
3 | status=$(nmcli g | grep -oE "disconnected") | ||||
4 | essid=$(nmcli c | grep wlp2s0 | awk '{print ($1)}') | ||||
5 | |||||
6 | if [ $status ] ; then | ||||
7 | icon="" | ||||
8 | text="" | ||||
9 | col="#575268" | ||||
10 | |||||
11 | else | ||||
12 | icon="" | ||||
13 | text="${essid}" | ||||
14 | col="#a1bdce" | ||||
15 | fi | ||||
16 | |||||
17 | |||||
18 | |||||
19 | if [[ "$1" == "--COL" ]]; then | ||||
20 | echo $col | ||||
21 | elif [[ "$1" == "--ESSID" ]]; then | ||||
22 | echo $text | ||||
23 | elif [[ "$1" == "--ICON" ]]; then | ||||
24 | echo $icon | ||||
25 | fi | ||||
26 |