#!/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