network speed support for linux

This commit is contained in:
b1f6c1c4 2020-07-23 22:55:53 -04:00
parent 96da408100
commit 3643275e44
No known key found for this signature in database
GPG key ID: B733A45639BA98FF

View file

@ -73,6 +73,7 @@ print_info() {
info "CPU" cpu
info "GPU" gpu
info "Memory" memory
info "Network" network
# info "GPU Driver" gpu_driver # Linux/macOS only
# info "CPU Usage" cpu_usage
@ -2648,6 +2649,45 @@ get_memory() {
esac
}
get_network() {
case $os in
"Linux")
while IFS= read -r i; do
# List all operational, physical devices
if [ "$(cat "$i/operstate")" = "up" ] && [ -e "$i/device" ]; then
if [ ! -e "$i/phy80211" ]; then
networks+="$(cat "$i/speed")"
else
networks+="Wifi"
fi
networks+=$'\n'
fi
done < <(find /sys/class/net/ -type l)
;;
esac
while IFS=' ' read -r n i; do
if [ -n "$i" ]; then
[ "$n" -gt 1 ] && network+="${n}x "
if [ "$i" = "Wifi" ]; then
network+="Wifi; "
elif [ "$i" = "-1" ]; then
network+="Unknown; "
elif [ "${i%000}" = "$i" ]; then
network+="$i Mbps; "
elif [ "$i" = "2500" ]; then
network+="2.5 Gbps; "
else
network+="${i%000} Gbps; "
fi
fi
done < <(sort -rn <<<"$networks" | uniq -c)
if [ -z "$network" ]; then
network="None"
else
network="${network%; }"
fi
}
get_song() {
players=(
"amarok"
@ -5192,6 +5232,7 @@ get_args() {
info "GPU" gpu
info "GPU Driver" gpu_driver
info "Memory" memory
info "Network" network
info "CPU Usage" cpu_usage
info "Disk" disk