+# *** L E G A C Y C O N F I G O N L Y ***
+
# Fastfetch configuration
# Write every argument in different lines.
# Direct arguments will overwrite the corresponding ones in this file.
# Must be auto, builtin, file, file-raw, data, data-raw, sixel, kitty or chafa.
# Default is auto.
#--logo-type auto
+--logo-type sixel
# Logo width option:
# Sets the width of the logo (in characters) if the logo is an image.
# Must be linux console color codes or the name of a color.
# Default is the title color of the logo.
# Use "fastfetch --help color" to learn more and see examples.
-#--color-title magenta
+# --color-title cyan
# Binary prefix option:
# Sets the binary prefix to use.
# Title user color option:
# Sets color of the user name (left part).
# Default is empty (use color of `--color-title`).
-#--title-color-user
+--title-color-user cyan
# Title at color option:
# Sets color of the @ symbol (middle part).
# Default is empty (use color of `--color-title`).
-#--title-color-at
+--title-color-at red
# Title host color option:
# Sets color of the host name (right part).
# Default is empty (use color of `--color-title`).
-#--title-color-host
+--title-color-host cyan
# Separator option:
# Sets the string placed between a key and its value.
# Sets if all sound devices should be printed
# Must be either main, active or all. Default is main
# Default is main.
-#--sound-type main
+# --sound-type main
# Percentage output type option
# Applies to all modules that prints percentage values. Currently memory, swap, disk, battery and CPU usage are supported.
--- /dev/null
+// Load with --load-config examples/2.jsonc
+// Note that you must replace the image path to an existing image to display it.
+
+{
+ "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
+ "logo": {
+ "preserveAspectRatio": "true",
+ "source": "$HOME/.config/fastfetch/gentoo.png",
+ "width": 50,
+ "padding": {
+ "top": 2
+ }
+ },
+ "display": {
+ // "separator": " -> "
+ "separator": " "
+ },
+ "modules": [
+ "title",
+ "separator",
+ {
+ "type": "os",
+ "key": " OS",
+ "keyColor": "yellow",
+ "format": "{2}"
+ },
+ {
+ "type": "kernel",
+ "key": "├",
+ "keyColor": "yellow"
+ },
+ {
+ "type": "packages",
+ "key": "├",
+ "keyColor": "yellow"
+ },
+ {
+ "type": "shell",
+ "key": "└",
+ "keyColor": "yellow"
+ },
+ "break",
+
+ {
+ "type": "wm",
+ "key": " DE/WM",
+ "keyColor": "blue"
+ },
+ {
+ "type": "lm",
+ "key": "├",
+ "keyColor": "blue"
+ },
+ {
+ "type": "wmtheme",
+ "key": "├",
+ "keyColor": "blue"
+ },
+ {
+ "type": "icons",
+ "key": "├",
+ "keyColor": "blue"
+ },
+ {
+ "type": "terminal",
+ "key": "├",
+ "keyColor": "blue"
+ },
+ {
+ "type": "wallpaper",
+ "key": "└",
+ "keyColor": "blue"
+ },
+
+ "break",
+ {
+ "type": "host",
+ "key": " PC",
+ "keyColor": "green"
+ },
+ {
+ "type": "cpu",
+ "key": "├",
+ "keyColor": "green"
+ },
+ {
+ "type": "gpu",
+ "key": "├",
+ "keyColor": "green"
+ },
+ {
+ "type": "memory",
+ "key": "├",
+ "keyColor": "green"
+ },
+ {
+ "type": "swap",
+ "key": "├",
+ "keyColor": "green"
+ },
+ {
+ "type": "disk",
+ "folders": "/",
+ "key": "├",
+ "keyColor": "green"
+ },
+ {
+ "type": "uptime",
+ "key": "├",
+ "keyColor": "green"
+ },
+ {
+ "type": "display",
+ "key": "└",
+ "keyColor": "green"
+ },
+
+ "break",
+ {
+ "type": "sound",
+ "key": " SOUND",
+ "keyColor": "cyan"
+ },
+ {
+ "type": "player",
+ "key": "├",
+ "keyColor": "cyan"
+ },
+ {
+ "type": "media",
+ "key": "└",
+ "keyColor": "cyan"
+ },
+
+ "break",
+ "colors"
+ ]
+}