Replies: 3 comments 2 replies
-
Use I'd suggest
|
Beta Was this translation helpful? Give feedback.
2 replies
-
The best I could do was this config: /*
HyDE provides xdg/share/fastfetch/presets/hyde/*.config.jsonc files for different layouts.
You can also create your own config.jsonc file in the same directory to create a custom theme.
To test HyDE's fastfetch theme, run:
fastfetch --config hyde/*.jsonc
*/
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/ascii/arch.txt",
"type": "auto",
"color": {
"1": "cyan"
}
},
"display": {
"separator": " : "
},
"modules": [
{
"type": "command",
"key": " ",
"keyColor": "blue",
"text": "splash=$(hyprctl splash);echo $splash"
},
{
"type": "custom",
"format": "┌──────────────────────────────────────────┐"
},
{
"type": "chassis",
"key": " Chassis",
"format": "{1} {2} {3}"
},
{
"type": "os",
"key": " OS",
"format": "{2}",
"keyColor": "red"
},
{
"type": "kernel",
"key": " Kernel",
"format": "{2}",
"keyColor": "red"
},
{
"type": "packages",
"key": " Packages",
"keyColor": "green"
},
{
"type": "display",
"key": " Display",
"format": "{1}x{2} @ {3}Hz [{7}]",
"keyColor": "green"
},
{
"type": "terminal",
"key": " Terminal",
"keyColor": "yellow"
},
{
"type": "wm",
"key": " WM",
"format": "{2}",
"keyColor": "yellow"
},
{
"type": "custom",
"format": "└──────────────────────────────────────────┘"
},
"break",
{
"type": "title",
"key": " ",
"format": "{6} {7} {8}"
},
{
"type": "custom",
"format": "┌──────────────────────────────────────────┐"
},
{
"type": "cpu",
"format": "{1} @ {7}",
"key": " CPU",
"keyColor": "blue"
},
{
"type": "gpu",
"format": "{1} {2}",
"key": " GPU",
"keyColor": "blue"
},
{
"type": "gpu",
"format": "{3}",
"key": " GPU Driver",
"keyColor": "magenta"
},
{
"type": "memory",
"key": " Memory ",
"keyColor": "magenta"
},
{
"type": "disk",
"key": " OS Age ",
"folders": "/",
"keyColor": "red",
"format": "{days} days"
},
{
"type": "uptime",
"key": " Uptime ",
"keyColor": "red"
},
{
"type": "custom",
"format": "└──────────────────────────────────────────┘"
},
{
"type": "colors",
"paddingLeft": 2,
"symbol": "circle"
},
"break"
]
} With this config I got this output: ❯ fastfetch --show-errors
Logo: Failed to load / convert the image source |
Beta Was this translation helpful? Give feedback.
0 replies
-
I solved this following #1191 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, i am trying to set this ASCII as the default logo of my config:
While setting this file (/home/xgen0/Hyde/Configs/.config/fastfetch/ascii/arch) (I also tried as arch.txt file format), I had encounter an issue that the terminal will generate the arch default logo:
As you can see the ascii is not shown even though is the correct path, with the same co0nfig file but importing an image the logo is shown as expected:
Do you have any suggestions on how to do it??
Config file:
Beta Was this translation helpful? Give feedback.
All reactions