From d4b5a3282fedfa2c39bd17ea2c3ddb7ddbf179b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Thu, 5 Oct 2023 09:19:06 +0200 Subject: [PATCH] Added the speedtest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Woźniak --- .local/bin/Update-pkg | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.local/bin/Update-pkg b/.local/bin/Update-pkg index a2ae19b..8ce818a 100755 --- a/.local/bin/Update-pkg +++ b/.local/bin/Update-pkg @@ -222,6 +222,11 @@ function update() { } +function install_speedtest() { + # Install speedtest-cli + pip3 install speedtest-cli $PIPEXTPRE +} + function main() { command_start update_pip command_start install_neovim_module_for_python @@ -244,6 +249,7 @@ function main() { command_start install_ytdlp command_start install_spotifydl command_start install_awscli + command_start install_speedtest command_start update }