-
Notifications
You must be signed in to change notification settings - Fork 523
Configuration
李通洲 edited this page Jul 20, 2023
·
16 revisions
Fastfetch uses JSONC (JSON with comments) to store configuration. It should be located in ~/.config/fastfetch
, namely config.jsonc
. You may create it with
Using an editor with JSON schema support is highly suggested. If unsure, I suggest using vscode.
Specify logo options in an object with key of logo
:
{
"logo": {
"type": "iterm",
"source": "/path/to/logo.png",
"width": 34,
"height": 15
}
}
See https://github.com/fastfetch-cli/fastfetch/wiki/Logo-options for detail
*"logo": null
is equivalent to "logo": { "type": "none" }
.
*"logo": "/path/to/logo.png"
is equivalent to "logo": { "source": "/path/to/logo.png" }
.