>>2264415It's the default fastfetch preset module, he didn't customize it as far as I can tell. After you install fastfetch, in your terminal run [code]fastfetch -c all.jsonc[/code]
It will display every available value that you can show, pick which ones you want to use and note their names. Edit [code]~/.config/fastfetch/config.jsonc[/code] Choose any values from this list and include them in the above file
https://github.com/fastfetch-cli/fastfetch/blob/dev/presets/all.jsonc#L9
You can write custom text (with custom colours), this is what determines your 'theme'
[code]
{
"type": "custom",
"format": "\u001b[31mโ \u001b[91mโ \u001b[33mโ \u001b[93mโ \u001b[32mโ \u001b[92mโ \u001b[34mโ \u001b[94mโ \u001b[36mโ \u001b[96mโ \u001b[35mโ \u001b[95mโ \u001b[30mโ \u001b[37mโ \u001b[90mโ \u001b[97mโ "
},
{
"type": "custom",
"format": "\u001b[96m This is my distro"
},[/code]
This includes a display of all your 14 terminal colours and a line of text you can edit and place anywhere. If you want a specific theme like dracula, import the theme colours to your terminal config file and it will display them properly.