This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| clear | |
| figlet -f slant "PABLOVERSE" | lolcat | |
| echo "📅 $(date)" | |
| echo "--------------------------------------" | |
| echo "📡 Network:" | |
| tailscale status 2>/dev/null | grep -E "pablo|100\." || echo "Tailscale: offline" | |
| echo "" | |
| echo "⚙️ Services:" | |
| brew services list | grep -E "tailscale|ollama|transmission" | awk '{print " " $1 "\t" $2}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| echo "🧹 Shutting down Pabloverse environment..." | |
| brew services stop ollama | |
| brew services stop transmission-cli | |
| sudo brew services stop tailscale | |
| osascript -e 'quit app "Plex Media Server"' 2>/dev/null | |
| pkill -f slskd 2>/dev/null | |
| pkill -f ttyd 2>/dev/null | |
| sudo pmset -a sleep 10 | |
| sudo pmset -a disksleep 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| # 📸 IMMICH PHOTO SERVER - iCloud Replacement | |
| # Run this AFTER Docker is installed and running | |
| echo "📸 Setting up Immich Photo Server..." | |
| # Check Docker is running | |
| if ! docker ps &>/dev/null; then | |
| echo "❌ Docker is not running!" | |
| echo " 1. Install: brew install --cask docker" |