Skip to content

Instantly share code, notes, and snippets.

@FlyinPancake
Created November 2, 2025 17:09
Show Gist options
  • Select an option

  • Save FlyinPancake/ba3b861d71ba3b373c5bbae780cca3e2 to your computer and use it in GitHub Desktop.

Select an option

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"
@thomjiji

Copy link
Copy Markdown

Great!

@RedSnt

RedSnt commented Aug 25, 2026

Copy link
Copy Markdown

Crazy the hunt one has to go on to find nuggets like this. Excellent work, thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment