From 512df0b9296801efac4e558ebaa9f47e87918dc9 Mon Sep 17 00:00:00 2001 From: Jacob Thompson Date: Fri, 26 Sep 2025 18:33:00 -0700 Subject: [PATCH 1/2] inform of the case of FontAndColorThemes being a preexisting plist file --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b16697..bcd1f9a 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,19 @@ ## Usage -1. Copy your preferred flavor(s) from [`themes/`](./themes/) to `~/Library/Developer/Xcode/UserData/FontAndColorThemes`. +1. Copy your preferred flavor(s) from [`themes/`](./themes/) to: +``` +~/Library/Developer/Xcode/UserData/FontAndColorThemes +``` 2. Go to **Xcode** > **Preferences** (Command + ,), choose the **Themes** tab, and select your desired Catppuccin theme. +> [!WARNING] +> `FontAndColorThemes` may already exist as a plist file. If so, rename or remove it and create a directory named `FontAndColorThemes`: +> ```sh +> mv ~/Library/Developer/Xcode/UserData/FontAndColorThemes ~/Library/Developer/Xcode/UserData/FontAndColorThemes.temp +> mkdir -p ~/Library/Developer/Xcode/UserData/FontAndColorThemes/ +> ``` + ## 💝 Thanks to - [Quentin](https://github.com/quentinguidee) From 2ac95c7b25ccff63747fba617842cf397742b955 Mon Sep 17 00:00:00 2001 From: Jacob Thompson Date: Fri, 26 Sep 2025 18:49:03 -0700 Subject: [PATCH 2/2] make it abundantly clear that FontAndColorThemes is supposed to be a directory --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bcd1f9a..d9aabca 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ 1. Copy your preferred flavor(s) from [`themes/`](./themes/) to: ``` -~/Library/Developer/Xcode/UserData/FontAndColorThemes +~/Library/Developer/Xcode/UserData/FontAndColorThemes/ ``` 2. Go to **Xcode** > **Preferences** (Command + ,), choose the **Themes** tab, and select your desired Catppuccin theme.