15 lines
337 B
Bash
Executable File
15 lines
337 B
Bash
Executable File
#!/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 |