dwmblocks/scripts/dwmblocks-network

16 lines
569 B
Plaintext
Raw Normal View History

2023-02-21 12:15:57 -08:00
#!/usr/bin/env zsh
if [[ "$(uname)" = 'Linux' ]]; then
local active_networks="$(nmcli c s --active)"
local output=''
[[ "${active_networks}" = *' wifi '* ]] && output="${output}直 "
2023-02-21 14:18:19 -08:00
[[ "${active_networks}" = *' ethernet '* ]] && output="${output}"
2023-02-21 12:15:57 -08:00
[[ "${active_networks}" = *' wireguard '* ]] && output="${output}嬨 "
(( ${#output} == 0 )) && output=''
bluetoothctl show | grep 'Powered: yes' >/dev/null && output="${output} "
printf '%s\n' "${output}"
else
echo "${0}: error: unknown os: \"$(uname)\"" >&2
exit 1
fi