mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-09-28 18:35:04 +02:00
22 lines
393 B
Bash
22 lines
393 B
Bash
SPEEDTEST_DOWNLOAD_URL="http://37.32.15.80/assets/12mb.png?_=1711896914991"
|
|
WIFI_IP="192.168.1.1"
|
|
|
|
wget_speed() {
|
|
check_command wget
|
|
|
|
log "Wget Speedtest"
|
|
|
|
wget -q --show-progress --progress=bar -O /dev/null $SPEEDTEST_DOWNLOAD_URL
|
|
}
|
|
|
|
curl_speed() {
|
|
check_command curl
|
|
|
|
log "Curl Speedtest"
|
|
|
|
curl $SPEEDTEST_DOWNLOAD_URL >/dev/null
|
|
}
|
|
|
|
ping_wifi() {
|
|
ping $WIFI_IP
|
|
}
|