shellcell packages

Linux package repositories for the shellcell command-line tools: cnvrt, exex, snailrace, ttysvg. macOS and Linuxbrew users can use the Homebrew tap instead.

Debian / Ubuntu (apt)

sudo curl -fsSLo /etc/apt/keyrings/shellcell.gpg https://packages.shellcell.dev/shellcell.gpg
echo "deb [signed-by=/etc/apt/keyrings/shellcell.gpg] https://packages.shellcell.dev/apt stable main" \
  | sudo tee /etc/apt/sources.list.d/shellcell.list
sudo apt update
sudo apt install ttysvg

Fedora / RHEL (dnf)

sudo tee /etc/yum.repos.d/shellcell.repo <<'EOF'
[shellcell]
name=shellcell packages
baseurl=https://packages.shellcell.dev/rpm/$basearch
enabled=1
gpgcheck=0
repo_gpgcheck=1
gpgkey=https://packages.shellcell.dev/shellcell.asc
EOF
sudo dnf install ttysvg

Alpine (apk)

sudo curl -fsSLo /etc/apk/keys/packages@shellcell.rsa.pub \
  https://packages.shellcell.dev/packages@shellcell.rsa.pub
echo "https://packages.shellcell.dev/apk/$(apk --print-arch)" | sudo tee -a /etc/apk/repositories
sudo apk update
sudo apk add ttysvg

Repositories serve amd64/x86_64 and arm64/aarch64, rebuilt automatically from each project's latest GitHub release.