Created
November 2, 2025 17:09
-
-
Save FlyinPancake/ba3b861d71ba3b373c5bbae780cca3e2 to your computer and use it in GitHub Desktop.
Download and install all ghostty themes from mbadolato/iTerm2-Color-Schemes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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