mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
10 lines
162 B
Bash
Executable File
10 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ssid=$(nmcli -t -f active,ssid dev wifi | awk -F: '$1=="yes"{print $2}')
|
|
|
|
[ -n "$ssid" ] || exit 0
|
|
|
|
echo "WIFI $ssid"
|
|
echo "WIFI $ssid"
|
|
echo "#4a90d9"
|