c18381a3c6
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
5 lines
184 B
Bash
Executable File
5 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
print_wifi(){
|
|
echo -e "$(cat /sys/class/net/w*/operstate | sed "s/down/❌/;s/up/📶/") $(cat /sys/class/net/e*/operstate | sed "s/down/❌/;s/up/🌐/")"
|
|
}
|
|
print_wifi |