Skip to content

Commit 239b066

Browse files
committed
Update install script and add launch materials
1 parent 637724c commit 239b066

File tree

3 files changed

+117
-27
lines changed

3 files changed

+117
-27
lines changed

LINKEDIN_LAUNCH.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
🚀 Just launched CleanMac-Pro - The Ultimate macOS Optimization Toolkit!
2+
3+
I'm excited to share CleanMac-Pro, an open-source toolkit I've been developing that helps optimize your Mac's performance with one command.
4+
5+
🔗 GitHub: https://github.com/Dan13681989/CleanMac-Pro
6+
7+
What makes it special?
8+
• Network Optimization: Boosts internet speed by optimizing TCP/DNS settings
9+
• System Cleanup: Safely removes cache files and frees up disk space
10+
• Performance Monitoring: Real-time dashboard showing system health
11+
• Docker Optimization: Cleans up Docker containers and resizes Docker.raw
12+
• Security Scanning: Checks for common security issues
13+
14+
One command to install:
15+
```bash
16+
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Dan13681989/CleanMac-Pro/main/install.sh)"
17+
Perfect for:
18+
• Developers who want faster builds and deployments
19+
• Remote workers needing stable video calls
20+
• Gamers looking for lower latency
21+
• Anyone who wants their Mac to run faster
22+
23+
The toolkit has already helped achieve:
24+
✅ 94 Mbps throughput on 100Mbps connections
25+
✅ 3.4ms local latency
26+
✅ 0% packet loss with proper TCP tuning
27+
28+
It's completely open source (MIT License) and community-driven. I'd love for you to try it, share your feedback, and contribute if you find it useful!
29+
30+
#OpenSource #macOS #DeveloperTools #NetworkOptimization #GitHub #TechLaunch #Performance

TWITTER_THREAD.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
1/6 🚀 Announcing CleanMac-Pro!
2+
An open-source macOS optimization toolkit that cleans, speeds up, and secures your Mac with one command.
3+
4+
GitHub: https://github.com/Dan13681989/CleanMac-Pro
5+
6+
2/6 Features:
7+
• Network optimization (faster internet)
8+
• System cleanup (free up space)
9+
• Docker optimization
10+
• Security scanning
11+
• Real-time dashboard
12+
13+
3/6 One command installs everything:
14+
15+
bash
16+
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Dan13681989/CleanMac-Pro/main/install.sh)"
17+
4/6 Perfect for:
18+
• Developers
19+
• Remote workers
20+
• Gamers
21+
• Anyone with a Mac
22+
23+
5/6 Achieves:
24+
• 94 Mbps throughput
25+
• 3.4ms latency
26+
• 0% packet loss
27+
28+
6/6 Open source, MIT licensed, community welcome!
29+
Try it and star the repo if helpful! ⭐
30+
31+
#macOS #DeveloperTools #OpenSource #NetworkOptimization

install.sh

Lines changed: 56 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,60 @@
11
#!/bin/bash
2-
echo "🚀 Installing CleanMac Pro Enterprise..."
3-
echo "📦 This will install:"
4-
echo " • cleanmac-dashboard - System overview"
5-
echo " • cleanmac-analyze - Disk analysis"
6-
echo " • cleanmac-large-files - Space hog finder"
7-
echo " • cleanmac-smart-cache - Cache cleaning"
8-
echo " • cleanmac-docker-clean - Docker optimization"
9-
10-
# Check for Homebrew
11-
if ! command -v brew &> /dev/null; then
12-
echo "❌ Homebrew required. Install from: https://brew.sh"
2+
3+
set -e
4+
5+
# Colors for output
6+
RED='\033[0;31m'
7+
GREEN='\033[0;32m'
8+
YELLOW='\033[1;33m'
9+
NC='\033[0m' # No Color
10+
11+
echo -e "${GREEN}🚀 Installing CleanMac Pro...${NC}"
12+
echo ""
13+
14+
# Check for macOS
15+
if [[ "$(uname)" != "Darwin" ]]; then
16+
echo -e "${RED}❌ Error: This script is for macOS only${NC}"
1317
exit 1
1418
fi
1519

16-
# Install via Homebrew
17-
echo "📥 Installing via Homebrew..."
18-
brew install Dan13681989/tap/cleanmac-pro
19-
20-
if [ $? -eq 0 ]; then
21-
echo "🎉 Installation complete!"
22-
echo "💡 Run 'cleanmac-dashboard' to get started"
23-
else
24-
echo "❌ Installation failed. Trying alternative method..."
25-
26-
# Alternative: manual installation
27-
echo "📥 Trying manual installation..."
28-
sudo cp bin/* /usr/local/bin/
29-
echo "🎉 Manual installation complete!"
30-
echo "💡 Run 'cleanmac-dashboard' to get started"
31-
fi
20+
# Create temp directory
21+
TEMP_DIR=$(mktemp -d)
22+
cd "$TEMP_DIR"
23+
24+
# Download CleanMac-Pro
25+
echo "📥 Downloading CleanMac Pro..."
26+
git clone --depth 1 https://github.com/Dan13681989/CleanMac-Pro.git
27+
cd CleanMac-Pro
28+
29+
# Make scripts executable
30+
echo "🔧 Making scripts executable..."
31+
chmod +x cleanmac*
32+
chmod +x bin/*.sh 2>/dev/null || true
33+
34+
# Install to /usr/local/bin
35+
echo "📦 Installing to /usr/local/bin..."
36+
for script in cleanmac cleanmac-dashboard cleanmac-analyze cleanmac-large-files cleanmac-smart-cache cleanmac-docker-clean cleanmac-security-scan; do
37+
if [ -f "$script" ]; then
38+
sudo cp "$script" /usr/local/bin/
39+
sudo chmod +x /usr/local/bin/"$script"
40+
echo " ✅ Installed: $script"
41+
fi
42+
done
43+
44+
# Clean up
45+
cd ~
46+
rm -rf "$TEMP_DIR"
47+
48+
echo ""
49+
echo -e "${GREEN}🎉 Installation complete!${NC}"
50+
echo ""
51+
echo "📋 Available commands:"
52+
echo " cleanmac - Main menu with all options"
53+
echo " cleanmac-dashboard - System overview dashboard"
54+
echo " cleanmac-analyze - Disk usage analysis"
55+
echo " cleanmac-large-files - Find large files"
56+
echo " cleanmac-smart-cache - Clean system caches"
57+
echo " cleanmac-docker-clean - Optimize Docker"
58+
echo " cleanmac-security-scan - Security audit"
59+
echo ""
60+
echo "🚀 Get started with: cleanmac --help"

0 commit comments

Comments
 (0)