initial commit adding presets (config files), images and ascii-art files

This commit is contained in:
LierB 2024-05-12 09:41:37 +02:00
commit bbd67ee156
17 changed files with 690 additions and 0 deletions

50
presets/minimal.jsonc Normal file
View file

@ -0,0 +1,50 @@
// _____ _____ _____ _____ _____ _____ _____ _____ _____
// | __| _ | __|_ _| __| __|_ _| | | |
// | __| |__ | | | | __| __| | | | --| |
// |__| |__|__|_____| |_| |__| |_____| |_| |_____|__|__| MINIMAL
//
// by Bina
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": null,
"display": {
"separator": " "
},
"modules": [
"break",
{
"type": "os",
"key": "OS ",
"keyColor": "31", // = color1
},
{
"type": "kernel",
"key": "KER ",
"keyColor": "32",
},
{
"type": "packages",
"format": "{} (pacman)",
"key": "PKG ",
"keyColor": "33",
},
{
"type": "shell",
"key": "SH ",
"keyColor": "34",
},
{
"type": "terminal",
"key": "TER ",
"keyColor": "35",
},
{
"type": "wm",
"key": "WM ",
"keyColor": "36",
},
"break",
]
}