You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
|
|
|
function error {
|
|
echo -e "\\e[91m$1\\e[39m"
|
|
exit 1
|
|
}
|
|
|
|
cd ~
|
|
mkdir speedtest
|
|
wget https://bintray.com/ookla/download/download_file?file_path=ookla-speedtest-1.0.0-aarch64-linux.tgz -O ~/speedtest.tgz|| error 'Failed to download!'
|
|
cd speedtest
|
|
tar -xvzf ~/speedtest.tgz || error "failed to extract files!"
|
|
cd $HOME
|
|
rm ~/speedtest.tgz
|
|
|
|
printf "Creating shortcut..."
|
|
echo "[Desktop Entry]
|
|
Type=Application
|
|
Name=Run Speedtest
|
|
Comment=CLI internet speed test
|
|
Exec=bash -c $HOME'/speedtest/speedtest;echo -e "\Close this window to exit.";sleep infinity'
|
|
Icon=$HOME/pi-apps/apps/SpeedTest-CLI/icon-64.png
|
|
Categories=Network;WebBrowser;
|
|
Path=$HOME/speedtest
|
|
Terminal=true
|
|
StartupNotify=false" > ~/.local/share/applications/speedtest.desktop || error "failed to create menu shortcut!"
|
|
echo "done"
|
|
|
|
printf "creating /usr/local/bin/speedtest so you can launch from terminal..."
|
|
echo "#!/bin/bash
|
|
$HOME/speedtest/speedtest \"\$@\"" | sudo tee /usr/local/bin/speedtest >/dev/null
|
|
sudo chmod +x /usr/local/bin/speedtest
|
|
echo "done"
|