Skip to content

Instantly share code, notes, and snippets.

@FlyinPancake
Created November 2, 2025 17:09
Show Gist options
  • Save FlyinPancake/ba3b861d71ba3b373c5bbae780cca3e2 to your computer and use it in GitHub Desktop.
Save FlyinPancake/ba3b861d71ba3b373c5bbae780cca3e2 to your computer and use it in GitHub Desktop.
Download and install all ghostty themes from mbadolato/iTerm2-Color-Schemes
#!/bin/bash
mkdir -p ~/.config/ghostty/themes && \
tmpdir=$(mktemp -d) && \
git clone --depth 1 --filter=blob:none --sparse https://github.com/mbadolato/iTerm2-Color-Schemes.git "$tmpdir" && \
cd "$tmpdir" && \
git sparse-checkout set ghostty && \
rsync -a ghostty/ ~/.config/ghostty/themes/ && \
cd ~
rm -rf "$tmpdir"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment