Files
lucidia-os/install.sh
Your Name a0844a53d3 feat: Lucidia OS v5.0 LEGENDARY - AI-Native Operating System
BlackRoad Emoji Language v5.0:
- 671 patterns, 1,395 lines
- 35+ categories: sports, chess, zodiac, kaomoji, memes, ASCII art
- Big ASCII art: blackroad-big, skull-art, heart-art, rocket-art
- Deployed to all 7 fleet devices

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-02-14 16:03:43 -06:00

41 lines
955 B
Bash
Executable File

#!/bin/bash
# Lucidia OS Installer
# BlackRoad OS, Inc.
#
# Install: curl -sL https://raw.githubusercontent.com/BlackRoad-OS/lucidia-os/main/install.sh | bash
set -euo pipefail
LUCIDIA_HOME="$HOME/.lucidia"
REPO="https://github.com/BlackRoad-OS/lucidia-os.git"
echo "Installing Lucidia OS..."
echo ""
# Clone or update
if [ -d "$LUCIDIA_HOME" ]; then
echo "Updating existing installation..."
cd "$LUCIDIA_HOME"
git pull --rebase
else
echo "Cloning repository..."
git clone "$REPO" "$LUCIDIA_HOME"
fi
# Make scripts executable
chmod +x "$LUCIDIA_HOME/bin/"*
# Add to bashrc if not already present
if ! grep -q "source.*lucidia.sh" ~/.bashrc 2>/dev/null; then
echo "" >> ~/.bashrc
echo "# Lucidia OS" >> ~/.bashrc
echo "source ~/.lucidia/lucidia.sh" >> ~/.bashrc
echo "Added to ~/.bashrc"
fi
echo ""
echo "Lucidia installed successfully!"
echo "Run: source ~/.bashrc"
echo ""
echo "BlackRoad OS, Inc. | AI-Native"