mirror of
https://github.com/jessebot/dot_files.git
synced 2025-10-01 01:48:43 +00:00

fixes error: "JsonConfig Error: Property `display.percentX` has been changed to `display.percent.x`"
43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
// ~/.config/fastfetch/config.jsonc
|
|
// See https://github.com/fastfetch-cli/fastfetch/wiki/Configuration for more details
|
|
// See *.jsonc in https://github.com/fastfetch-cli/fastfetch/tree/dev/presets/examples for more examples
|
|
{
|
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
|
"logo": {
|
|
"width": 22,
|
|
"height": 14,
|
|
"type": "sixel",
|
|
"source": "dogontheinternet.png",
|
|
"padding": {"top": 1,
|
|
"left": 1,
|
|
"right": 1}
|
|
},
|
|
"display": {
|
|
"percent": {
|
|
"Type": 9
|
|
}, // colored percent number
|
|
"color": {
|
|
"keys": "magenta",
|
|
"title": "bright_blue"
|
|
}
|
|
},
|
|
"modules": [
|
|
"break",
|
|
"break",
|
|
"title",
|
|
"separator",
|
|
"os",
|
|
"host",
|
|
"uptime",
|
|
"packages",
|
|
"theme",
|
|
"cpu",
|
|
"gpu",
|
|
"memory",
|
|
"disk",
|
|
"battery",
|
|
"break",
|
|
"colors",
|
|
"break"
|
|
]
|
|
}
|