From 260c883d07a94e0091514b7c6d8af0dacefcb43d Mon Sep 17 00:00:00 2001 From: AcatXIo <512@keemail.me> Date: Tue, 7 May 2024 02:54:36 +0200 Subject: [PATCH] Presets: Update hardware.jsonc (#899) Update hardware.jsonc preset, fix logo being forced to arch, add more hardware information. --- presets/hardware.jsonc | 38 +++++++++++++++++++++++++------------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/presets/hardware.jsonc b/presets/hardware.jsonc index d976285fc..c6c22a758 100644 --- a/presets/hardware.jsonc +++ b/presets/hardware.jsonc @@ -1,25 +1,37 @@ { "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", - "logo": { - "type": "builtin", - "source": "arch" - }, "modules": [ - "host", - "display", + { + "type": "host", + "format": "{?2}{2}{?}{?5} ({5}){?}" + }, + "chassis", + { + "type": "board", + "format": "{?1}{1}{?}{?2} ({2}){?}" + }, "cpu", - "gpu", { "type": "memory", "format": "{?2}{2}{?}" }, - { - "type": "disk", - "format": "{?2}{2}{?}" - }, + "physicaldisk", + "gpu", + "display", + "monitor", + { + "type": "wifi", + "format": "{?1}{1}{?}{?6} - {6}{?}" + }, + { + "type": "sound", + "format": "{?2}{2}{?}" + }, + "camera", { "type": "battery", - "format": "{?1}{1} {?}{?2}{2} {?}{?3}({3}){?}" - } + "format": "{?1}{1}{?}{?2} {2}{?}{?3} ({3}){?}" + }, + "poweradapter" ] }