Skip to content

[BUG] --logo-type iterm image renders briefly then disappears after v2.64.0 logo printing rewrite #2378

@TezziePete

Description

@TezziePete

Read the FAQ first

  • I have checked the FAQ but the issue is not covered

Description

fastfetch version: 2.64.0 / 2.64.1 (regression from 2.63.1) System: macOS Tahoe 26.5.1, Apple M1 Terminal: iTerm2 (TERM_PROGRAM=iTerm.app)

Description: After the v2.64.0 logo printing rewrite ("Reworks the built-in logo printing logic"), --logo-type iterm no longer works correctly. The image flashes briefly (the iTerm2 escape sequence is sent and rendered) but is immediately overwritten/disappears, suggesting the cursor positioning or screen clearing after the image output is incorrect.

Steps to reproduce:

fastfetch --logo-type iterm --logo-padding-top 8 --logo-padding-left 3 --logo-padding-right 3 --logo-width 40 --logo-height 21 --logo-preserve-aspect-ratio true --logo ~/logos/some-image.png -c ~/.config/fastfetch/config.jsonc
Expected: Image renders and stays visible alongside system info modules (worked in 2.63.1).

Actual: Image appears momentarily (≈1 frame), then vanishes. Adding --pipe false and --show-errors produces no error output but the image still disappears.

Impact: Blocks iTerm2 users on macOS from using image logos on shell startup. Pin to 2.63.1 works around the issue.

Version used

2.64.0 & 2.64.1

Bug prevalence

Always

Regression

Yes

Installation

Package manager

Package manager

brew

Screenshots

Version 2.63.1 working
Image

Version 2.64.1 not working
Image

Configuration

I use a custom json:-

// Based on #1576
{
    "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
    "display": {
        "color": {
            "keys": "blue"
        },
        "separator": "",
        "constants": [
            "──────────────────────────────────────────────",
            "\u001b[47D",
            "\u001b[47C",
            "\u001b[46C"
        ],
        "brightColor": false
    },
    "modules": [
        {
            "type": "version",
            "key": "┌───────────────┬─{$1}┐\u001b[41D",
            "format": "\u001b[1m{#keys} {1} - {2} "
        },
        {
            "type": "os",
            "key": "│  {icon}  \u001b[s{sysname}\u001b[u\u001b[10C│{$3}│{$2}"
        },
        {
            "type": "datetime",
            "key": "│  {icon}  Fetched   │{$3}│{$2}",
            "format": "{year}-{month-pretty}-{day-pretty} {hour-pretty}:{minute-pretty}:{second-pretty} {timezone-name}"
        },
        {
            "type": "locale",
            "key": "│  {icon}  Locale    │{$3}│{$2}"
        },

        // Hardware
        {
            "type": "custom",
            "key": "│{#cyan}┌──────────────┬{$1}┐{#keys}│\u001b[37D",
            "format": "{#bright_cyan} Hardware "
        },
        {
            "type": "chassis",
            "key": "│{#cyan}│ {icon}  Chassis   │{$4}│{#keys}│{$2}"
        },
        {
            "type": "memory",
            "key": "│{#cyan}│ {icon}  RAM       │{$4}│{#keys}│{$2}"
        },
        {
            "type": "swap",
            "key": "│{#cyan}│ {icon}  SWAP      │{$4}│{#keys}│{$2}"
        },
        {
            "type": "cpu",
            "key": "│{#cyan}│ {icon}  CPU       │{$4}│{#keys}│{$2}",
            "showPeCoreCount": true
        },
        {
            "type": "gpu",
            "key": "│{#cyan}│ {icon}  GPU       │{$4}│{#keys}│{$2}"
        },
        {
            "type": "disk",
            "key": "│{#cyan}│ {icon}  Disk      │{$4}│{#keys}│{$2}",
            "format": "{size-used} \/ {size-total} ({size-percentage}) - {filesystem}"
        },
        {
            "type": "battery",
            "key": "│{#cyan}│ {icon}  Battery   │{$4}│{#keys}│{$2}"
        },
        {
            "type": "custom",
            "key": "│{#cyan}└──────────────┴{$1}┘{#keys}│",
            "format": ""
        },

        // Desktop
        {
            "type": "custom",
            "key": "│{#green}┌──────────────┬{$1}┐{#keys}│\u001b[37D",
            "format": "{#bright_green} Desktop "
        },
        {
            "type": "de",
            "key": "│{#green}│ {icon}  Desktop   │{$4}│{#keys}│{$2}"
        },
        {
            "type": "wm",
            "key": "│{#green}│ {icon}  Session   │{$4}│{#keys}│{$2}"
        },
        {
            "type": "display",
            "key": "│{#green}│ {icon}  Display   │{$4}│{#keys}│{$2}",
            "compactType": "original-with-refresh-rate"
        },
        {
            "type": "gpu",
            "key": "│{#green}│ {icon}  G-Driver  │{$4}│{#keys}│{$2}",
            "format": "{driver}"
        },
        {
            "type": "custom",
            "key": "│{#green}└──────────────┴{$1}┘{#keys}│",
            "format": ""
        },

        // Terminal
        {
            "type": "custom",
            "key": "│{#yellow}┌──────────────┬{$1}┐{#keys}│\u001b[37D",
            "format": "{#bright_yellow} Terminal "
        },
        {
            "type": "shell",
            "key": "│{#yellow}│ {icon}  Shell     │{$4}│{#keys}│{$2}"
        },
        {
            "type": "terminal",
            "key": "│{#yellow}│ {icon}  Terminal  │{$4}│{#keys}│{$2}"
        },
        {
            "type": "terminalfont",
            "key": "│{#yellow}│ {icon}  Term Font │{$4}│{#keys}│{$2}"
        },
        {
            "type": "packages",
            "key": "│{#yellow}│ {icon}  Packages  │{$4}│{#keys}│{$2}"
        },
        {
            "type": "custom",
            "key": "│{#yellow}└──────────────┴{$1}┘{#keys}│",
            "format": ""
        },

        // Development
        {
            "type": "custom",
            "key": "│{#red}┌──────────────┬{$1}┐{#keys}│\u001b[39D",
            "format": "{#bright_red} Development "
        },
        {
            "type": "command",
            "keyIcon": "",
            "key": "│{#red}│ {icon}  Rust      │{$4}│{#keys}│{$2}",
            "text": "rustc --version | cut -d' ' -f2",
            "format": "rustc {}"
        },
        {
            "type": "command",
            "keyIcon": "",
            "key": "│{#red}│ {icon}  Clang     │{$4}│{#keys}│{$2}",
            "text": "clang --version | head -1 | awk '{print $NF}'",
            "format": "clang {}"
        },
        {
            "type": "command",
            "keyIcon": "",
            "key": "│{#red}│ {icon}  NodeJS    │{$4}│{#keys}│{$2}",
            "text": "node --version",
            "format": "node {~1}"
        },
        {
            "type": "command",
            "keyIcon": "",
            "key": "│{#red}│ {icon}  Go        │{$4}│{#keys}│{$2}",
            "text": "go version | cut -d' ' -f3",
            "format": "go {~2}"
        },
        {
            "type": "command",
            "keyIcon": "",
            "key": "│{#red}│ {icon}  Zig       │{$4}│{#keys}│{$2}",
            "text": "zig version",
            "format": "zig {}"
        },
        {
            "type": "editor",
            "key": "│{#red}│ {icon}  Editor    │{$4}│{#keys}│{$2}"
        },
        {
            "type": "command",
            "keyIcon": "󰊢",
            "key": "│{#red}│ {icon}  Git       │{$4}│{#keys}│{$2}",
            "text": "git version",
            "format": "git {~12}"
        },
        {
            "type": "font",
            "key": "│{#red}│ {icon}  Interface │{$4}│{#keys}│{$2}"
        },
        {
            "type": "custom",
            "key": "│{#red}└──────────────┴{$1}┘{#keys}│",
            "format": ""
        },

        // Uptime
        {
            "type": "custom",
            "key": "│{#magenta}┌──────────────┬{$1}┐{#keys}│\u001b[36D",
            "format": "{#bright_magenta} Uptime "
        },
        {
            "type": "uptime",
            "key": "│{#magenta}│ {icon}  Uptime    │{$4}│{#keys}│{$2}"
        },
        {
            "type": "users",
            "myselfOnly": true,
            "keyIcon": "",
            "key": "│{#magenta}│ {icon}  Login     │{$4}│{#keys}│{$2}"
        },
        {
            "type": "disk",
            "keyIcon": "",
            "key": "│{#magenta}│ {icon}  OS Age    │{$4}│{#keys}│{$2}",
            "folders": "/", // On macOS, "/System/Volumes/VM" works for me
            "format": "{create-time:10} [{days} days]"
        },
        {
            "type": "custom",
            "key": "│{#magenta}└──────────────┴{$1}┘{#keys}│",
            "format": ""
        },
        {
            "type": "custom",
            "key": "└─────────────────{$1}┘",
            "format": ""
        },

        // End
        "break"
    ]
}

This is based on example template 25.jsonc

I have a number of different logos that are cycled and managed using shell logic.  The call to produce the image and fastfetch is:-

fast fetch --logo-type iterm --logo-padding-top 8 --logo-padding-left 3 --logo-padding-right 3 --logo-width 40 --logo-height 21 --logo-preserve-aspect-ratio true --logo "$imageName" -c ~/.config/fastfetch/my.jsonc

System information

[
  {
    "type": "Title",
    "result": {
      "userId": 501,
      "userName": "xxxxxxxxxxx",
      "fullUserName": "xxxxxxxxxxxxx",
      "hostName": "XXXXXXX-MacBook-Pro.local",
      "homeDir": "/Users/xxxxxxxxx/",
      "exePath": "/opt/homebrew/Cellar/fastfetch/2.64.1/bin/fastfetch",
      "userShell": "/bin/zsh",
      "pid": 62329,
      "cwd": "/Users/xxxxxxxxxxx/"
    },
    "stat": 0.003999998793005943
  },
  {
    "type": "Separator",
    "error": "Unsupported for JSON format",
    "stat": 0.0020000003278255463
  },
  {
    "type": "OS",
    "result": {
      "buildID": "25F80",
      "codename": "Tahoe",
      "id": "macos",
      "idLike": "",
      "name": "macOS",
      "prettyName": "macOS Tahoe 26.5.1 (25F80)",
      "variant": "",
      "variantID": "",
      "version": "26.5.1",
      "versionID": "26.5.1"
    },
    "stat": 0.23499999940395355
  },
  {
    "type": "Host",
    "result": {
      "family": "MacBookPro17,1",
      "name": "MacBook Pro (13-inch, M1, 2020)",
      "version": "",
      "sku": "",
      "vendor": "Apple Inc.",
      "serial": "FVFFT0JQQ05R",
      "uuid": "4854DB86-106E-5633-8CAE-F28C09189A7F"
    },
    "stat": 0.07799999974668026
  },
  {
    "type": "BIOS",
    "result": {
      "date": "Sat Apr 18 16:19:56 PDT 2026",
      "release": "",
      "vendor": "Apple Inc.",
      "version": "18000.120.36",
      "type": "mBoot"
    },
    "stat": 0.05000000074505806
  },
  {
    "type": "Bootmgr",
    "result": {
      "name": "mBoot",
      "firmware": "/System/Library/CoreServices/boot.efi",
      "order": 0,
      "secureBoot": true
    },
    "stat": 0.03800000064074993
  },
  {
    "type": "Board",
    "result": {
      "name": "J293AP",
      "vendor": "Apple Inc.",
      "version": "",
      "serial": ""
    },
    "stat": 0.026999998837709427
  },
  {
    "type": "Chassis",
    "result": {
      "type": "Laptop",
      "vendor": "Apple Inc.",
      "version": "",
      "serial": ""
    },
    "stat": 0.044999999925494194
  },
  {
    "type": "Kernel",
    "result": {
      "architecture": "arm64",
      "name": "Darwin",
      "release": "25.5.0",
,
      "pageSize": 16384
    },
    "stat": 0.0030000004917383194
  },
  {
    "type": "InitSystem",
    "result": {
      "name": "launchd",
      "exe": "/sbin/launchd",
      "version": "7.0.0",
      "pid": 1
    },
    "stat": 7.736999999731779
  },
  {
    "type": "Uptime",
    "result": {
      "uptime": 14813951,
      "bootTime": "2026-06-05T07:01:06.277+0100"
    },
    "stat": 0.40600000135600567
  },
  {
    "type": "Loadavg",
    "result": [
      1.685546875,
      1.98486328125,
      2.20166015625
    ],
    "stat": 0.006000000983476639
  },
  {
    "type": "Processes",
    "result": 933,
    "stat": 0.10699999891221523
  },
  {
    "type": "Packages",
    "result": {
      "all": 310,
      "brew": 295,
      "brewCask": 15
    },
    "stat": 0.5700000002980232
  },
  {
    "type": "Shell",
    "result": {
      "exe": "zsh",
      "exeName": "zsh",
      "exePath": "/bin/zsh",
      "pid": 59755,
      "ppid": 59754,
      "processName": "zsh",
      "prettyName": "zsh",
      "version": "5.9",
      "tty": 0
    },
    "stat": 4.5760000012815
  },
  {
    "type": "Editor",
    "error": "$VISUAL or $EDITOR not set",
    "stat": 0.006999999284744263
  },
  {
    "type": "Display",
    "result": [
      {
        "id": 1,
        "name": "Color LCD",
        "primary": true,
        "output": {
          "width": 2880,
          "height": 1800,
          "refreshRate": 60.0,
          "drrStatus": null,
          "dpi": 192
        },
        "scaled": {
          "width": 1440,
          "height": 900
        },
        "preferred": {
          "width": 2560,
          "height": 1600,
          "refreshRate": 60.0
        },
        "physical": {
          "width": 286,
          "height": 179
        },
        "rotation": 0,
        "bitDepth": 10,
        "hdrStatus": "Unsupported",
        "type": "Builtin",
        "manufactureDate": null,
        "serial": 4251086178,
        "platformApi": "CoreGraphics"
      }
    ],
    "stat": 62.26300000026822
  },
  {
    "type": "Brightness",
    "result": [
      {
        "name": "Color LCD",
        "max": 1.0,
        "min": 0.0,
        "current": 0.3615286946296692,
        "builtin": true
      }
    ],
    "stat": 0.7929999995976686
  },
  {
    "type": "Monitor",
    "error": "Monitor module is an alias of Display module",
    "stat": 0.0040000006556510925
  },
  {
    "type": "LM",
    "error": "Not supported on this platform",
    "stat": 0.0010000001639127731
  },
  {
    "type": "DE",
    "error": "No DE found",
    "stat": 0.001999998465180397
  },
  {
    "type": "WM",
    "result": {
      "processName": "WindowServer",
      "prettyName": "Quartz Compositor",
      "protocolName": "",
      "pluginName": "",
      "version": "1.600.0"
    },
    "stat": 0.5920000001788139
  },
  {
    "type": "WMTheme",
    "result": "Multicolor (Light)",
    "stat": 0.16899999976158142
  },
  {
    "type": "Theme",
    "result": {
      "theme1": "Liquid Glass",
      "theme2": ""
    },
    "stat": 0.005000000819563866
  },
  {
    "type": "Icons",
    "error": "Not supported on this platform",
    "stat": 0.0
  },
  {
    "type": "Font",
    "result": {
      "display": ".AppleSystemUIFont [System], Helvetica [User]",
      "fonts": [
        ".AppleSystemUIFont",
        "Helvetica",
        ".AppleSystemUIFontMonospaced",
        "Menlo"
      ]
    },
    "stat": 4.11600000038743
  },
  {
    "type": "Cursor",
    "result": {
      "theme": "Fill - Black, Outline - White",
      "size": "48"
    },
    "stat": 0.20399999991059303
  },
  {
    "type": "Wallpaper",
    "result": "Built-in default wallpaper",
    "stat": 0.1469999998807907
  },
  {
    "type": "Terminal",
    "result": {
      "processName": "iTermServer-3.6.",
      "exe": "/Users/xxxxxxxxxxxx/Library/Application Support/iTerm2/iTermServer-3.6.11",
      "exeName": "iTermServer-3.6.11",
      "exePath": "/Users/xxxxxxxxxxxx/Library/Application Support/iTerm2/iTermServer-3.6.11",
      "pid": 59753,
      "ppid": 59751,
      "prettyName": "iTerm",
      "version": "3.6.11",
      "tty": ""
    },
    "stat": 0.0989999994635582
  },
  {
    "type": "TerminalFont",
    "result": {
      "font": {
        "name": "MesloLGS-NF-Regular",
        "size": "16",
        "styles": [],
        "pretty": "MesloLGS-NF-Regular (16pt)"
      },
      "fallback": {
        "name": "",
        "size": "",
        "styles": [],
        "pretty": ""
      }
    },
    "stat": 0.38599999994039536
  },
  {
    "type": "TerminalSize",
    "result": {
      "columns": 121,
      "rows": 36,
      "width": 2420,
      "height": 1512
    },
    "stat": 0.039000000804662704
  },
  {
    "type": "TerminalTheme",
    "result": {
      "fg": {
        "r": 141,
        "g": 247,
        "b": 122,
        "dark": false
      },
      "bg": {
        "r": 0,
        "g": 0,
        "b": 0,
        "dark": true
      }
    },
    "stat": 0.5030000004917383
  },
  {
    "type": "CPU",
    "result": {
      "cpu": "Apple M1",
      "vendor": "Apple",
      "packages": 1,
      "cores": {
        "physical": 8,
        "logical": 8,
        "online": 8
      },
      "frequency": {
        "base": 0,
        "max": 3204
      },
      "coreTypes": [
        {
          "count": 4,
          "freq": 2
        },
        {
          "count": 4,
          "freq": 1
        }
      ],
      "temperature": null,
      "march": "ARMv8.4-A",
      "numaNodes": null
    },
    "stat": 2.2440000008791685
  },
  {
    "type": "CPUCache",
    "result": {
      "l1": [
        {
          "size": 196608,
          "num": 4,
          "lineSize": 128,
          "type": "instruction"
        },
        {
          "size": 131072,
          "num": 4,
          "lineSize": 128,
          "type": "data"
        },
        {
          "size": 131072,
          "num": 4,
          "lineSize": 128,
          "type": "instruction"
        },
        {
          "size": 65536,
          "num": 4,
          "lineSize": 128,
          "type": "data"
        }
      ],
      "l2": [
        {
          "size": 12582912,
          "num": 1,
          "lineSize": 128,
          "type": "unified"
        },
        {
          "size": 4194304,
          "num": 1,
          "lineSize": 128,
          "type": "unified"
        }
      ]
    },
    "stat": 0.032999999821186066
  },
  {
    "type": "CPUUsage",
    "result": [
      40.0,
      60.0,
      38.095238095238095,
      42.857142857142854,
      38.095238095238095,
      35.0,
      9.523809523809524,
      0.0
    ],
    "stat": 54.037999998778105
  },
  {
    "type": "GPU",
    "result": [
      {
        "index": 0,
        "coreCount": 8,
        "coreUsage": 10.0,
        "memory": {
          "dedicated": {
            "total": null,
            "used": null
          },
          "shared": {
            "total": 12713115648,
            "used": 651853824
          },
          "type": null
        },
        "driver": "com.apple.AGXG13G 351.2",
        "name": "Apple M1",
        "temperature": null,
        "type": "Integrated",
        "vendor": "Apple",
        "platformApi": "Metal 4",
        "frequency": null,
        "deviceId": 4294968994
      }
    ],
    "stat": 14.898000000044703
  },
  {
    "type": "Codec",
    "result": [
      {
        "gpu": "Default",
        "encoders": [
          "MJPEG",
          "H.264",
          "HEVC / H.265"
        ],
        "decoders": [
          "MJPEG",
          "H.264",
          "HEVC / H.265",
          "Dolby Vision (HEVC)"
        ],
        "platformApi": "VideoToolbox"
      }
    ],
    "stat": 10.21000000089407
  },
  {
    "type": "Memory",
    "result": {
      "total": 17179869184,
      "used": 12500353024
    },
    "stat": 0.009999999776482582
  },
  {
    "type": "PhysicalMemory",
    "result": [
      {
        "size": 17179869184,
        "installed": true,
        "maxSpeed": 0,
        "runningSpeed": 0,
        "type": "LPDDR4",
        "locator": "",
        "formFactor": "",
        "vendor": "Micron",
        "serial": "",
        "partNumber": "",
        "ecc": false
      }
    ],
    "stat": 0.04900000058114529
  },
  {
    "type": "Swap",
    "result": [
      {
        "name": "Encrypted",
        "used": 546045952,
        "total": 1073741824
      }
    ],
    "stat": 0.00299999862909317
  },
  {
    "type": "Disk",
    "result": [
      {
        "bytes": {
          "available": 479241891840,
          "free": 479241891840,
          "total": 994662584320,
          "used": 515420692480
        },
        "files": {
          "total": 4288694451,
          "used": 458725
        },
        "filesystem": "apfs",
        "mountpoint": "/",
        "mountFrom": "/dev/disk3s1s1",
        "name": "Macintosh HD",
        "volumeType": [
          "Regular",
          "Read-only"
        ],
        "createTime": "2026-05-21T09:57:02.000+0100"
      },
      {
        "bytes": {
          "available": 231829504,
          "free": 231829504,
          "total": 4104126464,
          "used": 3872296960
        },
        "files": {
          "total": 2525739,
          "used": 261779
        },
        "filesystem": "apfs",
        "mountpoint": "/Library/Developer/CoreSimulator/Volumes/watchOS_20R362",
        "mountFrom": "/dev/disk9s1",
        "name": "watchOS_20R362",
        "volumeType": [
          "Hidden",
          "Read-only"
        ],
        "createTime": "2022-08-23T05:03:59.109+0100"
      },
      {
        "bytes": {
          "available": 231043072,
          "free": 231043072,
          "total": 4131389440,
          "used": 3900346368
        },
        "files": {
          "total": 2529458,
          "used": 273178
        },
        "filesystem": "apfs",
        "mountpoint": "/Library/Developer/CoreSimulator/Volumes/watchOS_20S75",
        "mountFrom": "/dev/disk7s1",
        "name": "watchOS_20S75",
        "volumeType": [
          "Hidden",
          "Read-only"
        ],
        "createTime": "2022-10-12T08:58:44.193+0100"
      },
      {
        "bytes": {
          "available": 479241891840,
          "free": 479241891840,
          "total": 994662584320,
          "used": 515420692480
        },
        "files": {
          "total": 391122110,
          "used": 5992806
        },
        "filesystem": "apfs",
        "mountpoint": "/System/Volumes/Data",
        "mountFrom": "/dev/disk3s5",
        "name": "Data",
        "volumeType": [
          "Hidden"
        ],
        "createTime": "2021-04-25T04:39:11.993+0100"
      },
      {
        "bytes": {
          "available": 501604352,
          "free": 501604352,
          "total": 524288000,
          "used": 22683648
        },
        "files": {
          "total": 4898524,
          "used": 44
        },
        "filesystem": "apfs",
        "mountpoint": "/System/Volumes/Hardware",
        "mountFrom": "/dev/disk1s3",
        "name": "Hardware",
        "volumeType": [
          "Hidden"
        ],
        "createTime": "2021-06-04T15:55:05.982+0100"
      },
      {
        "bytes": {
          "available": 479243087872,
          "free": 479243087872,
          "total": 994662584320,
          "used": 515419496448
        },
        "files": {
          "total": 385142509,
          "used": 1525
        },
        "filesystem": "apfs",
        "mountpoint": "/System/Volumes/Preboot",
        "mountFrom": "/dev/disk3s2",
        "name": "Preboot",
        "volumeType": [
          "Hidden"
        ],
        "createTime": "2021-06-04T15:55:05.013+0100"
      },
      {
        "bytes": {
          "available": 479242113024,
          "free": 479242113024,
          "total": 994662584320,
          "used": 515420471296
        },
        "files": {
          "total": 385131588,
          "used": 124
        },
        "filesystem": "apfs",
        "mountpoint": "/System/Volumes/Update",
        "mountFrom": "/dev/disk3s4",
        "name": "Update",
        "volumeType": [
          "Hidden"
        ],
        "createTime": "2021-06-04T16:00:26.673+0100"
      },
      {
        "bytes": {
          "available": 479242113024,
          "free": 479242113024,
          "total": 994662584320,
          "used": 515420471296
        },
        "files": {
          "total": 385131465,
          "used": 1
        },
        "filesystem": "apfs",
        "mountpoint": "/System/Volumes/VM",
        "mountFrom": "/dev/disk3s6",
        "name": "VM",
        "volumeType": [
          "Hidden"
        ],
        "createTime": "2021-06-04T16:06:18.368+0100"
      },
      {
        "bytes": {
          "available": 501604352,
          "free": 501604352,
          "total": 524288000,
          "used": 22683648
        },
        "files": {
          "total": 4898510,
          "used": 30
        },
        "filesystem": "apfs",
        "mountpoint": "/System/Volumes/iSCPreboot",
        "mountFrom": "/dev/disk1s1",
        "name": "iSCPreboot",
        "volumeType": [
          "Hidden"
        ],
        "createTime": "2021-06-04T15:55:05.645+0100"
      },
      {
        "bytes": {
          "available": 501604352,
          "free": 501604352,
          "total": 524288000,
          "used": 22683648
        },
        "files": {
          "total": 4898483,
          "used": 3
        },
        "filesystem": "apfs",
        "mountpoint": "/System/Volumes/xarts",
        "mountFrom": "/dev/disk1s2",
        "name": "xarts",
        "volumeType": [
          "Hidden"
        ],
        "createTime": "2021-06-04T15:55:05.813+0100"
      },
      {
        "bytes": {
          "available": 2774485381120,
          "free": 2774485381120,
          "total": 3495000002560,
          "used": 720514621440
        },
        "files": {
          "total": 1329063169,
          "used": 4283145
        },
        "filesystem": "apfs",
        "mountpoint": "/Volumes/Backups of XXXXXXXXXX MacBook Pro",
        "mountFrom": "/dev/disk5s1",
        "name": "Backups of XXXXXXXXX MacBook Pro",
        "volumeType": [
          "Hidden"
        ],
        "createTime": "2025-03-20T12:10:21.680+0000"
      }
    ],
    "stat": 0.15799999982118607
  },
  {
    "type": "Btrfs",
    "error": "Not supported on this platform",
    "stat": 0.0010000001639127731
  },
  {
    "type": "Zpool",
    "error": "dlopen(libzfs.dylib) failed",
    "stat": 1.5650000013411045
  },
  {
    "type": "Battery",
    "result": [
      {
        "capacity": 80.0,
        "manufacturer": "Apple Inc.",
        "manufactureDate": "2021-04-14",
        "modelName": "bq20z451",
        "technology": "Lithium",
        "serial": "F5D11635KQMKGGJB7",
        "temperature": 29.950000000000045,
        "cycleCount": 358,
        "timeRemaining": 30960,
        "status": [
          "Discharging"
        ]
      }
    ],
    "stat": 0.5039999987930059
  },
  {
    "type": "PowerAdapter",
    "result": [],
    "stat": 0.19700000062584877
  },
  {
    "type": "Player",
    "error": "Player module is an alias of Media module",
    "stat": 0.0010000001639127731
  },
  {
    "type": "Media",
    "error": "No media found",
    "stat": 62.21900000050664
  },
  {
    "type": "PublicIp",
    "result": {
      "ip": "xxx.xxx.xxx.xxx,
      "location": "xxxxxxxxx, XX"
    },
    "stat": 0.2109999991953373
  },
  {
    "type": "LocalIp",
    "result": [
      {
        "name": "en0",
        "defaultRoute": {
          "ipv4": true,
          "ipv6": false
        },
        "ipv4": "192.168.1.95/24",
        "ipv6": "",
        "mac": "XX:XX:XX:XX:XX:XX",
        "mtu": 1500,
        "speed": -1,
        "flags": "UP,BROADCAST,RUNNING,MULTICAST,NOTRAILERS,SIMPLEX"
      }
    ],
    "stat": 0.14800000004470348
  },
  {
    "type": "DNS",
    "result": [
      "XXX.XXX.XXX.XXX",
      "xxxx:xxxx:xxxx::xx"
    ],
    "stat": 0.48000000044703484
  },
  {
    "type": "Wifi",
    "result": [
      {
        "inf": {
          "description": "enX",
          "status": "Power On"
        },
        "conn": {
          "status": "Active",
          "ssid": "xxxxxx",
          "bssid": "xx:xx:xx:xx:xx:xx",
          "protocol": "802.11ax (Wi-Fi 6)",
          "security": "WPA3 Personal",
          "signalQuality": 100.0,
          "rxRate": null,
          "txRate": 1200.0,
          "channel": 36,
          "frequency": 5400
        }
      }
    ],
    "stat": 31.520999999716878
  },
  {
    "type": "DateTime",
    "result": "2026-06-05T11:08:00.482+0100",
    "stat": 0.007999999448657036
  },
  {
    "type": "Locale",
    "result": "en_GB.UTF-8",
    "stat": 0.0020000003278255463
  },
  {
    "type": "Vulkan",
    "result": {
      "apiVersion": "1.1.334",
      "conformanceVersion": "1.4",
      "driver": "MoltenVK [1.4.1]",
      "gpus": [
        {
          "type": "Integrated",
          "vendor": "Apple",
          "name": "Apple M1",
          "driver": "1.4.1",
          "platformApi": "Vulkan 1.1.334",
          "deviceId": 436535815,
          "memory": {
            "dedicated": {
              "total": 0,
              "used": null
            },
            "shared": {
              "total": 17179869184,
              "used": null
            }
          },
          "deviceId": 436535815
        }
      ]
    },
    "stat": 4.064999999478459
  },
  {
    "type": "OpenGL",
    "result": {
      "version": "4.1 Metal - 90.5",
      "renderer": "Apple M1",
      "vendor": "Apple",
      "slv": "4.10",
      "library": "CGL 1.2"
    },
    "stat": 18.762000000104308
  },
  {
    "type": "OpenCL",
    "result": {
      "version": "1.2 (Apr 18 2026 19:20:04)",
      "name": "Apple",
      "vendor": "Apple",
      "gpus": [
        {
          "type": "Integrated",
          "vendor": "Apple",
          "name": "Apple M1",
          "driver": "1.0",
          "platformApi": "OpenCL 1.2",
          "coreCount": 8,
          "frequency": 1000,
          "memory": {
            "dedicated": {
              "total": null,
              "used": null
            },
            "shared": {
              "total": 12713115648,
              "used": null
            }
          },
          "deviceId": 16940800
        }
      ]
    },
    "stat": 0.03199999965727329
  },
  {
    "type": "Users",
    "result": [
      {
        "name": "xxxxxxxxxxx",
        "hostName": "",
        "sessionName": "ttys000",
        "clientIp": "",
        "loginTime": "2026-06-05T10:52:17.747+0100"
      }
    ],
    "stat": 0.1699999999254942
  },
  {
    "type": "Bluetooth",
    "result": [],
    "stat": 164.76800000108778
  },
  {
    "type": "BluetoothRadio",
    "result": [
      {
        "name": "XXXXXXXX MacBook Pro",
        "address": "XX:XX:XX:XX:XX:XX",
        "lmpVersion": -11,
        "lmpSubversion": null,
        "vendor": "Apple",
        "enabled": true,
        "discoverable": true,
        "connectable": true
      }
    ],
    "stat": 89.22199999913573
  },
  {
    "type": "Sound",
    "result": [
      {
        "name": "MacBook Pro Speakers",
        "identifier": "BuiltInSpeakerDevice",
        "platformApi": "Core Audio",
        "type": [
          "main",
          "active"
        ],
        "volume": 100
      }
    ],
    "stat": 123.9890000000596
  },
  {
    "type": "Camera",
    "result": [
      {
        "name": "FaceTime HD Camera",
        "vendor": "Apple Inc.",
        "colorSpace": "sRGB",
        "id": "EAB7A68F-EC2B-4487-AADF-D8A91C1CB782",
        "width": 1280,
        "height": 720
      },
      {
        "name": "XXXXXXX iPhone Camera",
        "vendor": "",
        "colorSpace": "sRGB",
        "id": "DD85820A-5F95-45CA-86D0-9D4C00000001",
        "width": 640,
        "height": 480
      }
    ],
    "stat": 157.1820000000298
  },
  {
    "type": "Gamepad",
    "result": [],
    "stat": 0.2220000009983778
  },
  {
    "type": "Mouse",
    "result": [
      {
        "serial": "FM7117703KXN4Q8BH+WCT",
        "name": "Apple Internal Keyboard / Trackpad",
        "ignored": false
      }
    ],
    "stat": 25.010999999940395
  },
  {
    "type": "Keyboard",
    "result": [
      {
        "serial": "",
        "name": "TouchBarUserDevice",
        "ignored": false
      },
      {
        "serial": "FM7117703KXN4Q8BH+WCT",
        "name": "Apple Internal Keyboard / Trackpad",
        "ignored": false
      }
    ],
    "stat": 44.48299999907613
  },
  {
    "type": "Weather",
    "result": "+16°C - Partly Cloudy  (Walton on Thames, England, GB)",
    "stat": 0.15200000070035458
  },
  {
    "type": "NetIO",
    "result": [
      {
        "name": "en0",
        "defaultRoute": true,
        "txBytes": 1468,
        "rxBytes": 2766,
        "txPackets": 15,
        "rxPackets": 24,
        "rxErrors": 0,
        "txErrors": 0,
        "rxDrops": 0,
        "txDrops": 0
      }
    ],
    "stat": 115.0800000000745
  },
  {
    "type": "DiskIO",
    "result": [
      {
        "name": "APPLE SSD AP1024Q Media",
        "devPath": "/dev/disk0",
        "bytesRead": 868352,
        "bytesWritten": 356352,
        "readCount": 16,
        "writeCount": 11
      },
      {
        "name": "Apple Disk Image Media",
        "devPath": "/dev/disk4",
        "bytesRead": 0,
        "bytesWritten": 0,
        "readCount": 0,
        "writeCount": 0
      },
      {
        "name": "Apple Disk Image Media",
        "devPath": "/dev/disk6",
        "bytesRead": 0,
        "bytesWritten": 0,
        "readCount": 0,
        "writeCount": 0
      },
      {
        "name": "Apple Disk Image Media",
        "devPath": "/dev/disk8",
        "bytesRead": 0,
        "bytesWritten": 0,
        "readCount": 0,
        "writeCount": 0
      }
    ],
    "stat": 0.2999999988824129
  },
  {
    "type": "PhysicalDisk",
    "result": [
      {
        "name": "APPLE SSD AP1024Q Media",
        "devPath": "/dev/disk0",
        "interconnect": "Apple Fabric",
        "kind": "SSD",
        "size": 1000555581440,
        "serial": "0ba0142181190840",
        "removable": false,
        "readOnly": false,
        "unknown": false,
        "revision": "561.100.",
        "temperature": 34.0
      },
      {
        "name": "Apple Disk Image Media",
        "devPath": "/dev/disk4",
        "interconnect": "Virtual Interface - File",
        "kind": "Virtual",
        "size": 16000000000000,
        "serial": "05000036-0000-0000-D636-576580A36706",
        "removable": true,
        "readOnly": false,
        "unknown": false,
        "revision": "524.120.8",
        "temperature": null
      },
      {
        "name": "Apple Disk Image Media",
        "devPath": "/dev/disk6",
        "interconnect": "Virtual Interface - File",
        "kind": "Virtual",
        "size": 4131423744,
        "serial": "E5BBACC8-6643-529C-BBB1-43423882B348",
        "removable": true,
        "readOnly": true,
        "unknown": false,
        "revision": "524.120.8",
        "temperature": null
      },
      {
        "name": "Apple Disk Image Media",
        "devPath": "/dev/disk8",
        "interconnect": "Virtual Interface - File",
        "kind": "Virtual",
        "size": 4104160768,
        "serial": "A42FDEC4-75FE-56A6-985A-B4B0457874DD",
        "removable": true,
        "readOnly": true,
        "unknown": false,
        "revision": "524.120.8",
        "temperature": null
      }
    ],
    "stat": 3.907999999821186
  },
  {
    "type": "TPM",
    "result": {
      "version": "2.0",
      "description": "Apple Silicon Security"
    },
    "stat": 0.0020000003278255463
  },
  {
    "type": "Version",
    "result": {
      "projectName": "fastfetch",
      "sysName": "macOS",
      "architecture": "aarch64",
      "version": "2.64.1",
      "versionGit": "",
      "cmakeBuiltType": "Release",
      "compileTime": "Jun  4 2026, 15:45:19",
      "compiler": "Apple clang 21.0.0 (21000099)",
      "debugMode": false,
      "libc": "libSystem 1356.0.0"
    },
    "stat": 0.0020000003278255463
  },
  {
    "type": "Break",
    "error": "Unsupported for JSON format",
    "stat": 0.0010000001639127731
  },
  {
    "type": "Colors",
    "error": "Unsupported for JSON format",
    "stat": 0.0010000001639127731
  }
]

Features built-in

/opt/homebrew/bin/fastfetch --list-features
threads
vulkan
imagemagick7
chafa
zlib
sqlite3
libzfs
System yyjson
Embedded wcwidth
Lua 5.5

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions