mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
14 lines
263 B
Bash
Executable File
14 lines
263 B
Bash
Executable File
#!/bin/sh
|
|
|
|
symbol() {
|
|
[ $(cat /sys/class/net/w*/operstate) = down ] && echo && exit
|
|
echo
|
|
}
|
|
|
|
name() {
|
|
nmcli | grep "^wlp" | sed 's/\ connected\ to\ /Connected to /g' | cut -d ':' -f2
|
|
}
|
|
|
|
[ "$1" = "icon" ] && symbol && exit
|
|
[ "$1" = "name" ] && name && exit
|