Inital Comit Upload Config Files

This commit is contained in:
2026-03-17 00:30:35 +01:00
commit a07d19b8a8
36 changed files with 1796 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#!/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