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