Catppuccin for Windows Terminal
- Launch Windows Terminal
- Open the Settings panel (Ctrl + ,)
- Select Open JSON file at bottom left corner (Ctrl + Shift + ,)
- Choose your flavour (frappe, latte, macchiato, mocha)
- Copy the contents of flavour.json (example: frappe.json) into the opened JSON file under "schemes":
{
..default layout
"schemes":
[
..catppuccin flavour
..other schemes
],
}
- Copy the contents of flavourTheme.json (example: frappeTheme.json) into the opened JSON file under "themes":
{
..default layout
"themes":
[
..catppuccin flavour
..other themes
],
}
- Save and exit
- In the Settings panel under Profiles, select the profile you want to apply the theme to. Defaults will apply theme to all profiles.
- Select Appearance
- Choose your catppuccin flavor in the Color scheme drop down menu
- Click on Save, enjoy! ✨
Copyright © 2021-present Catppuccin Org
Catppuccin for Warp
- Identify the correct theme directory for your operating system:
# macOS
WARP_THEMES_DIR="$HOME/.warp/themes"
# Linux
WARP_THEMES_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/warp-terminal/themes"
- Move the files in
./dist/
to your theme directory, or download them withcurl
:
mkdir -p "$WARP_THEMES_DIR"
curl --output-dir "$WARP_THEMES_DIR" -LO https://raw.githubusercontent.com/catppuccin/warp/main/dist/catppuccin_latte.yml
curl --output-dir "$WARP_THEMES_DIR" -LO https://raw.githubusercontent.com/catppuccin/warp/main/dist/catppuccin_frappe.yml
curl --output-dir "$WARP_THEMES_DIR" -LO https://raw.githubusercontent.com/catppuccin/warp/main/dist/catppuccin_macchiato.yml
curl --output-dir "$WARP_THEMES_DIR" -LO https://raw.githubusercontent.com/catppuccin/warp/main/dist/catppuccin_mocha.yml
- Restart Warp to load the new themes
- Open Settings > Themes
- Select your preferred Catppuccin flavor
Copyright © 2021-present Catppuccin Org