Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion interface/appearance.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ sidebarTitle: "Appearance"
icon: "paintbrush"
---

import UserDirectory from "/snippets/install/user-directory.mdx"

ComfyUI offers flexible appearance customization options that allow you to personalize the interface to your preferences.

## Color Palette System
Expand Down Expand Up @@ -128,7 +130,7 @@ For cases where the color palette doesn't provide enough control, you can use cu

### User Directory Location

<Snippet file="install/user-directory.mdx" />
<UserDirectory/>

### CSS Specificity Note

Expand Down
49 changes: 31 additions & 18 deletions snippets/install/user-directory.mdx
Original file line number Diff line number Diff line change
@@ -1,22 +1,35 @@
The ComfyUI user directory is where your personal settings, workflows, and customizations are stored. The location depends on whether you're using the desktop application or the standard installation:

## Desktop Application

### Windows
- `C:\Users\<your username>\AppData\Roaming\ComfyUI`

### macOS
- `~/Library/Application Support/ComfyUI`

### Linux
- `~/.config/ComfyUI`

## Standard Installation (Non-Desktop)

The user directory is located in the main ComfyUI installation folder:

- `<ComfyUI installation path>/user`
The ComfyUI user directory is where your personal settings, workflows, and customizations are stored. The location depends on your installation type:

<Tabs>
<Tab title="Desktop - Windows">
```
C:\Users\<your username>\AppData\Roaming\ComfyUI
```
</Tab>
<Tab title="Desktop - macOS">
```
~/Library/Application Support/ComfyUI
```
</Tab>
<Tab title="Desktop - Linux">
```
~/.config/ComfyUI
```
</Tab>
<Tab title="Manual Install">
The user directory is located in your ComfyUI installation folder:
```
<ComfyUI installation path>/user
```

For example, if you cloned ComfyUI to `C:\ComfyUI`, your user directory would be `C:\ComfyUI\user`.
</Tab>
<Tab title="Portable">
The user directory is located in your ComfyUI portable folder:
```
<ComfyUI_windows_portable>/ComfyUI/user
```
</Tab>
</Tabs>

This location contains your workflows, settings, and other user-specific files.
4 changes: 3 additions & 1 deletion zh-CN/interface/appearance.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ sidebarTitle: "外观"
icon: "paintbrush"
---

import UserDirectory from "/snippets/install/user-directory.mdx"

ComfyUI 提供灵活的外观自定义选项,允许您根据个人喜好来个性化界面。

## 调色板系统
Expand Down Expand Up @@ -128,7 +130,7 @@ ComfyUI 允许您为画布设置自定义背景图片,提供更加个性化的

### 用户目录位置

<Snippet file="install/user-directory.mdx" />
<UserDirectory/>

### CSS 特异性说明

Expand Down
Loading