Download & Install
Shard is available as both a Desktop App (graphical launcher) and a CLI (command-line tool). They share the same data directory, so profiles and accounts work with both.
Desktop App
macOS
Homebrew (Recommended)
brew install th0rgal/shard/shard-launcherManual Download
- Download the latest
.dmgfrom GitHub Releases- Apple Silicon:
shard-launcher-macos-arm64.dmg - Intel:
shard-launcher-macos-x64.dmg
- Apple Silicon:
- Open the DMG and drag Shard Launcher to Applications
- Launch from Applications
Note: On first launch, macOS may show a security warning. Right-click the app and select “Open” to bypass Gatekeeper.
Windows
Manual Download
- Download from GitHub Releases :
- Installer:
shard-launcher-windows-x64.msi - Setup:
shard-launcher-windows-x64-setup.exe
- Installer:
- Run the installer
- Launch from Start Menu
Linux
AUR (Arch Linux)
# Using yay
yay -S shard-launcher-bin
# Or using paru
paru -S shard-launcher-binManual Download
Download from GitHub Releases :
AppImage (all distros):
chmod +x shard-launcher-linux-x64.AppImage
./shard-launcher-linux-x64.AppImageDebian/Ubuntu (.deb):
sudo dpkg -i shard-launcher-linux-x64.debCLI
The CLI is a separate tool for scripting and automation.
macOS
Homebrew (Recommended)
brew install th0rgal/shard/shardManual Download
# Apple Silicon
curl -LO https://github.com/th0rgal/shard/releases/latest/download/shard-cli-macos-arm64.tar.gz
tar -xzf shard-cli-macos-arm64.tar.gz
sudo mv shard /usr/local/bin/
# Intel
curl -LO https://github.com/th0rgal/shard/releases/latest/download/shard-cli-macos-x64.tar.gz
tar -xzf shard-cli-macos-x64.tar.gz
sudo mv shard /usr/local/bin/Windows
Scoop (Recommended)
scoop bucket add shard https://github.com/Th0rgal/scoop-shard
scoop install shardManual Download
- Download
shard-cli-windows-x64.zipfrom GitHub Releases - Extract and add
shard.exeto your PATH
Linux
Homebrew
brew install th0rgal/shard/shardAUR (Arch Linux)
yay -S shardManual Download
curl -LO https://github.com/th0rgal/shard/releases/latest/download/shard-cli-linux-x64.tar.gz
tar -xzf shard-cli-linux-x64.tar.gz
sudo mv shard /usr/local/bin/Distribution Channels Summary
| Channel | OS | Desktop | CLI | Install Command |
|---|---|---|---|---|
| Homebrew | macOS, Linux | ✅ (macOS) | ✅ | brew install th0rgal/shard/shard |
| Scoop | Windows | ❌ | ✅ | scoop install shard |
| AUR | Arch Linux | ✅ | ✅ | yay -S shard-launcher-bin / yay -S shard |
| GitHub Releases | All | ✅ | ✅ | Download |
Verifying Downloads
Each release includes SHA-256 checksums in SHA256SUMS.txt:
# macOS/Linux
sha256sum -c SHA256SUMS.txt
# Or verify a single file
sha256sum shard-launcher-*.dmgData Location
Shard stores all data in ~/.shard/. Both the desktop app and CLI use this directory:
~/.shard/
├── store/ # Content-addressed storage (mods, packs)
├── profiles/ # Profile manifests
├── instances/ # Materialized game directories
├── minecraft/ # Versions, libraries, assets
├── accounts.json # Account tokens
└── config.json # Launcher settingsNext Steps
Last updated on