#!/bin/bash choice=$(printf "šŸ“¦ Portainer\n☁ Nextcloud\nšŸ“„ Paperless\nšŸ  Home Assistant\nšŸ¤– Ollama" | wofi --dmenu --prompt "Services") case "$choice" in "šŸ“¦ Portainer") xdg-open http://10.0.0.15:9000 ;; "☁ Nextcloud") xdg-open http://10.0.0.15:8080 ;; "šŸ“„ Paperless") xdg-open http://10.0.0.15:8000 ;; "šŸ  Home Assistant") xdg-open http://10.0.0.15:8123 ;; "šŸ¤– Ollama") xdg-open http://10.0.0.15:11434 ;; esac