Advertisement
reaperhacknslash

config.jsonc

Jun 29th, 2025
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.57 KB | None | 0 0
  1. // ~/.config/fastfetch/config.jsonc
  2. // See https://github.com/fastfetch-cli/fastfetch/wiki/Configuration for more details
  3. // See *.jsonc in https://github.com/fastfetch-cli/fastfetch/tree/dev/presets/examples for more examples
  4. {
  5.   "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
  6.   "logo": {
  7.     "source": "~/.config/fastfetch/logo.txt",
  8.     "color": {
  9.       "1": "blue"
  10.     },
  11.     "type": "file",
  12.     "padding": {
  13.       "top": 1
  14.     }
  15.   },
  16.   "display": {
  17.     "separator": "    "
  18.   },
  19.   "modules": [
  20.      {
  21.         "type": "custom", // startofinfo
  22.         "format": "┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓"
  23.      },
  24.      {
  25.         "type": "custom", // start
  26.         "format": "┣ 󰮯 - - - 󰬐 󰬜󰬚󰬌 󰣇 󰬉󰬛󰬞 - - - - - - - - - - - - - -┫"
  27.     },
  28.     {
  29.       "type": "custom",
  30.       "format": "┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫"
  31.     },
  32.     "break",
  33.     {
  34.       "type": "os",
  35.       "key": "  ",
  36.       "keyColor": "blue"
  37.     },
  38.     {
  39.       "type": "kernel",
  40.       "key": "  ",
  41.       "keyColor": "white"
  42.     },
  43.     {
  44.       "type": "packages",
  45.       "key": "  󰮯",
  46.       "keyColor": "yellow"
  47.     },
  48.     {
  49.       "type": "de",
  50.       "key": "  󰨇",
  51.       "keyColor": "blue"
  52.     },
  53.     {
  54.       "type": "terminal",
  55.       "key": "  ",
  56.       "keyColor": "magenta"
  57.     },
  58.     {
  59.       "type": "shell",
  60.       "key": "  ",
  61.       "keyColor": "yellow"
  62.     },
  63.     "break",
  64.     {
  65.       "type": "custom",
  66.       "format": "┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫"
  67.     },
  68.     "break",
  69.     {
  70.       "type": "host",
  71.       "key": "  ",
  72.       "keyColor": "bright_blue"
  73.     },
  74.     {
  75.       "type": "cpu",
  76.       "key": "  ",
  77.       "keyColor": "bright_green"
  78.     },
  79.     {
  80.       "type": "gpu",
  81.       "key": "  󱤓",
  82.       "keyColor": "red"
  83.     },
  84.     {
  85.       "type": "memory",
  86.       "key": "  󰍛",
  87.       "keyColor": "bright_yellow"
  88.     },
  89.     {
  90.       "type": "disk",
  91.       "key": "  ",
  92.       "keyColor": "bright_cyan"
  93.     },
  94.     "break",
  95.     {
  96.       "type": "custom",
  97.       "format": "┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛"
  98.     }
  99.   ]
  100. }
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement