Inital Comit Upload Config Files
This commit is contained in:
15
scripts/homelab/network-tools.sh
Executable file
15
scripts/homelab/network-tools.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
choice=$(printf "📡 Ping Server\n🌐 Ping Google\n⚡ Speedtest" | wofi --dmenu --prompt "Network")
|
||||
|
||||
case "$choice" in
|
||||
"📡 Ping Server")
|
||||
kitty -e ping 10.0.0.15
|
||||
;;
|
||||
"🌐 Ping Google")
|
||||
kitty -e ping google.com
|
||||
;;
|
||||
"⚡ Speedtest")
|
||||
kitty -e speedtest-cli
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user