gitextract_aqn42s14/ ├── .codespellrc ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report_crash.yml │ │ ├── bug_report_general.yml │ │ ├── bug_report_logo.yml │ │ ├── feature_request.yml │ │ └── logo_request.yml │ ├── pull_request_template.md │ ├── stale.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README-cn.md ├── README.md ├── completions/ │ ├── fastfetch.bash │ ├── fastfetch.fish │ └── fastfetch.zsh ├── debian/ │ ├── changelog.tpl │ ├── compat │ ├── control │ ├── copyright │ ├── publish.sh │ ├── rules │ └── watch ├── doc/ │ ├── fastfetch.1.in │ └── json_schema.json ├── presets/ │ ├── all.jsonc │ ├── archey.jsonc │ ├── ci.jsonc │ ├── examples/ │ │ ├── 10.jsonc │ │ ├── 11.jsonc │ │ ├── 12.jsonc │ │ ├── 13.jsonc │ │ ├── 14.jsonc │ │ ├── 15.jsonc │ │ ├── 16.jsonc │ │ ├── 17.jsonc │ │ ├── 18.jsonc │ │ ├── 19.jsonc │ │ ├── 2.jsonc │ │ ├── 20.jsonc │ │ ├── 21.jsonc │ │ ├── 22.jsonc │ │ ├── 23.jsonc │ │ ├── 24.jsonc │ │ ├── 25.jsonc │ │ ├── 26.jsonc │ │ ├── 27.jsonc │ │ ├── 28.jsonc │ │ ├── 29.jsonc │ │ ├── 3.jsonc │ │ ├── 30.jsonc │ │ ├── 31.jsonc │ │ ├── 32.jsonc │ │ ├── 4.jsonc │ │ ├── 5.jsonc │ │ ├── 6.jsonc │ │ ├── 7.jsonc │ │ ├── 8.jsonc │ │ └── 9.jsonc │ ├── neofetch.jsonc │ ├── paleofetch.jsonc │ └── screenfetch.jsonc ├── run.sh ├── scripts/ │ ├── gen-amdgpuids.py │ ├── gen-man.py │ └── gen-pciids.py ├── src/ │ ├── 3rdparty/ │ │ ├── display-library/ │ │ │ ├── adl_defines.h │ │ │ ├── adl_sdk.h │ │ │ ├── adl_structures.h │ │ │ └── repo.json │ │ ├── widecharwidth/ │ │ │ ├── repo.json │ │ │ └── widechar_width_c.h │ │ └── yyjson/ │ │ ├── repo.json │ │ ├── yyjson.c │ │ └── yyjson.h │ ├── common/ │ │ ├── FFPlatform.h │ │ ├── FFcheckmacros.h │ │ ├── FFlist.h │ │ ├── FFstrbuf.h │ │ ├── apple/ │ │ │ ├── Info.plist.in │ │ │ ├── cf_helpers.c │ │ │ ├── cf_helpers.h │ │ │ ├── osascript.h │ │ │ ├── osascript.m │ │ │ ├── smc_temps.c │ │ │ └── smc_temps.h │ │ ├── argType.h │ │ ├── arrayUtils.h │ │ ├── base64.h │ │ ├── binary.h │ │ ├── color.h │ │ ├── commandoption.h │ │ ├── dbus.h │ │ ├── debug.h │ │ ├── duration.h │ │ ├── edidHelper.h │ │ ├── ffdata.h │ │ ├── font.h │ │ ├── format.h │ │ ├── frequency.h │ │ ├── haiku/ │ │ │ ├── version.cpp │ │ │ └── version.h │ │ ├── impl/ │ │ │ ├── FFPlatform.c │ │ │ ├── FFPlatform_private.h │ │ │ ├── FFPlatform_unix.c │ │ │ ├── FFPlatform_windows.c │ │ │ ├── FFlist.c │ │ │ ├── FFstrbuf.c │ │ │ ├── base64.c │ │ │ ├── binary_apple.c │ │ │ ├── binary_linux.c │ │ │ ├── binary_windows.c │ │ │ ├── commandoption.c │ │ │ ├── dbus.c │ │ │ ├── debug_windows.c │ │ │ ├── duration.c │ │ │ ├── edidHelper.c │ │ │ ├── font.c │ │ │ ├── format.c │ │ │ ├── frequency.c │ │ │ ├── init.c │ │ │ ├── io_unix.c │ │ │ ├── io_windows.c │ │ │ ├── jsonconfig.c │ │ │ ├── kmod_apple.c │ │ │ ├── kmod_bsd.c │ │ │ ├── kmod_linux.c │ │ │ ├── kmod_nbsd.c │ │ │ ├── kmod_nosupport.c │ │ │ ├── kmod_sunos.c │ │ │ ├── kmod_windows.c │ │ │ ├── library.c │ │ │ ├── memrchr.c │ │ │ ├── netif.c │ │ │ ├── netif_apple.c │ │ │ ├── netif_bsd.c │ │ │ ├── netif_gnu.c │ │ │ ├── netif_haiku.c │ │ │ ├── netif_linux.c │ │ │ ├── netif_windows.c │ │ │ ├── networking_common.c │ │ │ ├── networking_linux.c │ │ │ ├── networking_windows.c │ │ │ ├── option.c │ │ │ ├── parsing.c │ │ │ ├── path.c │ │ │ ├── percent.c │ │ │ ├── printing.c │ │ │ ├── processing_linux.c │ │ │ ├── processing_windows.c │ │ │ ├── properties.c │ │ │ ├── settings.c │ │ │ ├── size.c │ │ │ ├── smbiosHelper.c │ │ │ ├── sysctl.c │ │ │ ├── temps.c │ │ │ ├── time.c │ │ │ └── wcwidth.c │ │ ├── init.h │ │ ├── io.h │ │ ├── jsonconfig.h │ │ ├── kmod.h │ │ ├── library.h │ │ ├── mallocHelper.h │ │ ├── memrchr.h │ │ ├── netif.h │ │ ├── networking.h │ │ ├── option.h │ │ ├── parsing.h │ │ ├── path.h │ │ ├── percent.h │ │ ├── printing.h │ │ ├── processing.h │ │ ├── properties.h │ │ ├── settings.h │ │ ├── size.h │ │ ├── smbiosHelper.h │ │ ├── stringUtils.h │ │ ├── sysctl.h │ │ ├── temps.h │ │ ├── textModifier.h │ │ ├── thread.h │ │ ├── time.h │ │ ├── unused.h │ │ ├── wcwidth.h │ │ └── windows/ │ │ ├── c-logo.sh │ │ ├── com.cpp │ │ ├── com.hpp │ │ ├── getline.c │ │ ├── getline.h │ │ ├── manifest.xml │ │ ├── nt.h │ │ ├── perflib_.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── unicode.c │ │ ├── unicode.h │ │ ├── unicode.hpp │ │ ├── util.hpp │ │ ├── variant.cpp │ │ ├── variant.hpp │ │ ├── version.c │ │ ├── version.h │ │ ├── version.rc │ │ ├── wmi.cpp │ │ └── wmi.hpp │ ├── data/ │ │ ├── help.json │ │ └── structure.txt │ ├── detection/ │ │ ├── battery/ │ │ │ ├── battery.h │ │ │ ├── battery_android.c │ │ │ ├── battery_apple.c │ │ │ ├── battery_bsd.c │ │ │ ├── battery_haiku.c │ │ │ ├── battery_linux.c │ │ │ ├── battery_nbsd.c │ │ │ ├── battery_nosupport.c │ │ │ ├── battery_obsd.c │ │ │ └── battery_windows.c │ │ ├── bios/ │ │ │ ├── bios.h │ │ │ ├── bios_android.c │ │ │ ├── bios_apple.c │ │ │ ├── bios_bsd.c │ │ │ ├── bios_linux.c │ │ │ ├── bios_nbsd.c │ │ │ ├── bios_nosupport.c │ │ │ └── bios_windows.c │ │ ├── bluetooth/ │ │ │ ├── bluetooth.h │ │ │ ├── bluetooth_apple.m │ │ │ ├── bluetooth_bsd.c │ │ │ ├── bluetooth_haiku.cpp │ │ │ ├── bluetooth_linux.c │ │ │ ├── bluetooth_nosupport.c │ │ │ ├── bluetooth_windows.c │ │ │ └── bluetooth_windows.cpp │ │ ├── bluetoothradio/ │ │ │ ├── bluetoothradio.c │ │ │ ├── bluetoothradio.h │ │ │ ├── bluetoothradio_apple.m │ │ │ ├── bluetoothradio_linux.c │ │ │ ├── bluetoothradio_nosupport.c │ │ │ └── bluetoothradio_windows.c │ │ ├── board/ │ │ │ ├── board.h │ │ │ ├── board_android.c │ │ │ ├── board_apple.c │ │ │ ├── board_bsd.c │ │ │ ├── board_linux.c │ │ │ ├── board_nbsd.c │ │ │ ├── board_nosupport.c │ │ │ └── board_windows.c │ │ ├── bootmgr/ │ │ │ ├── bootmgr.c │ │ │ ├── bootmgr.h │ │ │ ├── bootmgr_apple.c │ │ │ ├── bootmgr_bsd.c │ │ │ ├── bootmgr_linux.c │ │ │ ├── bootmgr_nosupport.c │ │ │ ├── bootmgr_windows.c │ │ │ └── efi_helper.h │ │ ├── brightness/ │ │ │ ├── brightness.h │ │ │ ├── brightness_apple.c │ │ │ ├── brightness_bsd.c │ │ │ ├── brightness_linux.c │ │ │ ├── brightness_nbsd.c │ │ │ ├── brightness_nosupport.c │ │ │ ├── brightness_obsd.c │ │ │ └── brightness_windows.cpp │ │ ├── btrfs/ │ │ │ ├── btrfs.h │ │ │ ├── btrfs_linux.c │ │ │ └── btrfs_nosupport.c │ │ ├── camera/ │ │ │ ├── camera.h │ │ │ ├── camera_android.c │ │ │ ├── camera_apple.m │ │ │ ├── camera_linux.c │ │ │ ├── camera_nosupport.c │ │ │ └── camera_windows.cpp │ │ ├── chassis/ │ │ │ ├── chassis.c │ │ │ ├── chassis.h │ │ │ ├── chassis_apple.c │ │ │ ├── chassis_bsd.c │ │ │ ├── chassis_linux.c │ │ │ ├── chassis_nbsd.c │ │ │ ├── chassis_nosupport.c │ │ │ └── chassis_windows.c │ │ ├── command/ │ │ │ ├── command.c │ │ │ └── command.h │ │ ├── cpu/ │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── cpu_apple.c │ │ │ ├── cpu_arm.h │ │ │ ├── cpu_bsd.c │ │ │ ├── cpu_haiku.c │ │ │ ├── cpu_linux.c │ │ │ ├── cpu_nbsd.c │ │ │ ├── cpu_nosupport.c │ │ │ ├── cpu_obsd.c │ │ │ ├── cpu_sunos.c │ │ │ └── cpu_windows.c │ │ ├── cpucache/ │ │ │ ├── cpucache.h │ │ │ ├── cpucache_apple.c │ │ │ ├── cpucache_linux.c │ │ │ ├── cpucache_nosupport.c │ │ │ ├── cpucache_shared.c │ │ │ └── cpucache_windows.c │ │ ├── cpuusage/ │ │ │ ├── cpuusage.c │ │ │ ├── cpuusage.h │ │ │ ├── cpuusage_apple.c │ │ │ ├── cpuusage_bsd.c │ │ │ ├── cpuusage_haiku.c │ │ │ ├── cpuusage_linux.c │ │ │ ├── cpuusage_nosupport.c │ │ │ ├── cpuusage_sunos.c │ │ │ └── cpuusage_windows.c │ │ ├── cursor/ │ │ │ ├── cursor.h │ │ │ ├── cursor_apple.m │ │ │ ├── cursor_linux.c │ │ │ ├── cursor_nosupport.c │ │ │ └── cursor_windows.c │ │ ├── de/ │ │ │ ├── de.h │ │ │ ├── de_linux.c │ │ │ └── de_nosupport.c │ │ ├── disk/ │ │ │ ├── disk.c │ │ │ ├── disk.h │ │ │ ├── disk_bsd.c │ │ │ ├── disk_haiku.cpp │ │ │ ├── disk_linux.c │ │ │ ├── disk_nosupport.c │ │ │ ├── disk_sunos.c │ │ │ └── disk_windows.c │ │ ├── diskio/ │ │ │ ├── diskio.c │ │ │ ├── diskio.h │ │ │ ├── diskio_apple.c │ │ │ ├── diskio_bsd.c │ │ │ ├── diskio_linux.c │ │ │ ├── diskio_nbsd.c │ │ │ ├── diskio_nosupport.c │ │ │ ├── diskio_obsd.c │ │ │ ├── diskio_sunos.c │ │ │ └── diskio_windows.c │ │ ├── displayserver/ │ │ │ ├── displayserver.c │ │ │ ├── displayserver.h │ │ │ ├── displayserver_android.c │ │ │ ├── displayserver_apple.c │ │ │ ├── displayserver_haiku.cpp │ │ │ ├── displayserver_windows.c │ │ │ └── linux/ │ │ │ ├── common.c │ │ │ ├── displayserver_linux.c │ │ │ ├── displayserver_linux.h │ │ │ ├── drm.c │ │ │ ├── wayland/ │ │ │ │ ├── global-output.c │ │ │ │ ├── kde-output-device-v2-client-protocol.h │ │ │ │ ├── kde-output-device-v2-protocol.c │ │ │ │ ├── kde-output-order-v1-client-protocol.h │ │ │ │ ├── kde-output-order-v1-protocol.c │ │ │ │ ├── kde-output.c │ │ │ │ ├── wayland.c │ │ │ │ ├── wayland.h │ │ │ │ ├── wlr-output-management-unstable-v1-client-protocol.h │ │ │ │ ├── wlr-output-management-unstable-v1-protocol.c │ │ │ │ ├── xdg-output-unstable-v1-client-protocol.h │ │ │ │ ├── xdg-output-unstable-v1-protocol.c │ │ │ │ └── zwlr-output.c │ │ │ ├── wmde.c │ │ │ ├── xcb.c │ │ │ └── xlib.c │ │ ├── dns/ │ │ │ ├── dns.h │ │ │ ├── dns_apple.c │ │ │ ├── dns_linux.c │ │ │ └── dns_windows.c │ │ ├── editor/ │ │ │ ├── editor.c │ │ │ └── editor.h │ │ ├── font/ │ │ │ ├── font.c │ │ │ ├── font.h │ │ │ ├── font_apple.m │ │ │ ├── font_haiku.cpp │ │ │ ├── font_linux.c │ │ │ ├── font_nosupport.c │ │ │ └── font_windows.c │ │ ├── gamepad/ │ │ │ ├── gamepad.h │ │ │ ├── gamepad_apple.c │ │ │ ├── gamepad_bsd.c │ │ │ ├── gamepad_haiku.cpp │ │ │ ├── gamepad_linux.c │ │ │ ├── gamepad_nosupport.c │ │ │ └── gamepad_windows.c │ │ ├── gpu/ │ │ │ ├── adl.h │ │ │ ├── asahi_drm.h │ │ │ ├── gpu.c │ │ │ ├── gpu.h │ │ │ ├── gpu_amd.c │ │ │ ├── gpu_android.c │ │ │ ├── gpu_apple.c │ │ │ ├── gpu_apple.m │ │ │ ├── gpu_bsd.c │ │ │ ├── gpu_driver_specific.h │ │ │ ├── gpu_drm.c │ │ │ ├── gpu_gnu.c │ │ │ ├── gpu_haiku.c │ │ │ ├── gpu_intel.c │ │ │ ├── gpu_linux.c │ │ │ ├── gpu_mthreads.c │ │ │ ├── gpu_nbsd.c │ │ │ ├── gpu_nosupport.c │ │ │ ├── gpu_nvidia.c │ │ │ ├── gpu_obsd.c │ │ │ ├── gpu_pci.c │ │ │ ├── gpu_sunos.c │ │ │ ├── gpu_windows.c │ │ │ ├── gpu_wsl.cpp │ │ │ ├── igcl.h │ │ │ ├── intel_drm.h │ │ │ ├── mtml.h │ │ │ ├── nvapi.h │ │ │ └── nvml.h │ │ ├── gtk_qt/ │ │ │ ├── gtk.c │ │ │ ├── gtk_qt.h │ │ │ └── qt.c │ │ ├── host/ │ │ │ ├── host.h │ │ │ ├── host_android.c │ │ │ ├── host_apple.c │ │ │ ├── host_bsd.c │ │ │ ├── host_linux.c │ │ │ ├── host_mac.c │ │ │ ├── host_nbsd.c │ │ │ ├── host_nosupport.c │ │ │ ├── host_obsd.c │ │ │ └── host_windows.c │ │ ├── icons/ │ │ │ ├── icons.h │ │ │ ├── icons_linux.c │ │ │ ├── icons_nosupport.c │ │ │ └── icons_windows.c │ │ ├── initsystem/ │ │ │ ├── initsystem.h │ │ │ ├── initsystem_haiku.c │ │ │ ├── initsystem_linux.c │ │ │ └── initsystem_nosupport.c │ │ ├── keyboard/ │ │ │ ├── keyboard.h │ │ │ ├── keyboard_apple.c │ │ │ ├── keyboard_bsd.c │ │ │ ├── keyboard_haiku.cpp │ │ │ ├── keyboard_linux.c │ │ │ ├── keyboard_nosupport.c │ │ │ └── keyboard_windows.c │ │ ├── libc/ │ │ │ ├── libc.h │ │ │ ├── libc_android.c │ │ │ ├── libc_apple.c │ │ │ ├── libc_bsd.c │ │ │ ├── libc_linux.c │ │ │ ├── libc_nosupport.c │ │ │ └── libc_windows.cpp │ │ ├── lm/ │ │ │ ├── lm.h │ │ │ ├── lm_linux.c │ │ │ └── lm_nosupport.c │ │ ├── loadavg/ │ │ │ ├── loadavg.h │ │ │ ├── loadavg_bsd.c │ │ │ ├── loadavg_linux.c │ │ │ ├── loadavg_nosupport.c │ │ │ └── loadavg_sunos.c │ │ ├── locale/ │ │ │ ├── locale.h │ │ │ ├── locale_linux.c │ │ │ └── locale_windows.c │ │ ├── localip/ │ │ │ ├── localip.h │ │ │ ├── localip_linux.c │ │ │ └── localip_windows.c │ │ ├── media/ │ │ │ ├── media.c │ │ │ ├── media.h │ │ │ ├── media_apple.m │ │ │ ├── media_linux.c │ │ │ ├── media_nosupport.c │ │ │ ├── media_windows.c │ │ │ ├── media_windows.dll.cpp │ │ │ └── media_windows.dll.h │ │ ├── memory/ │ │ │ ├── memory.h │ │ │ ├── memory_apple.c │ │ │ ├── memory_bsd.c │ │ │ ├── memory_haiku.c │ │ │ ├── memory_linux.c │ │ │ ├── memory_nbsd.c │ │ │ ├── memory_nosupport.c │ │ │ ├── memory_obsd.c │ │ │ ├── memory_sunos.c │ │ │ └── memory_windows.c │ │ ├── mouse/ │ │ │ ├── mouse.h │ │ │ ├── mouse_apple.c │ │ │ ├── mouse_bsd.c │ │ │ ├── mouse_haiku.cpp │ │ │ ├── mouse_linux.c │ │ │ ├── mouse_nosupport.c │ │ │ └── mouse_windows.c │ │ ├── netio/ │ │ │ ├── netio.c │ │ │ ├── netio.h │ │ │ ├── netio_apple.c │ │ │ ├── netio_bsd.c │ │ │ ├── netio_haiku.cpp │ │ │ ├── netio_linux.c │ │ │ ├── netio_nosupport.c │ │ │ ├── netio_sunos.c │ │ │ └── netio_windows.c │ │ ├── opencl/ │ │ │ ├── opencl.c │ │ │ └── opencl.h │ │ ├── opengl/ │ │ │ ├── opengl.h │ │ │ ├── opengl_apple.c │ │ │ ├── opengl_haiku.cpp │ │ │ ├── opengl_linux.c │ │ │ ├── opengl_shared.c │ │ │ └── opengl_windows.c │ │ ├── os/ │ │ │ ├── os.c │ │ │ ├── os.h │ │ │ ├── os_android.c │ │ │ ├── os_apple.m │ │ │ ├── os_haiku.c │ │ │ ├── os_linux.c │ │ │ ├── os_nbsd.c │ │ │ ├── os_obsd.c │ │ │ ├── os_sunos.c │ │ │ └── os_windows.c │ │ ├── packages/ │ │ │ ├── packages.c │ │ │ ├── packages.h │ │ │ ├── packages_apple.c │ │ │ ├── packages_bsd.c │ │ │ ├── packages_haiku.c │ │ │ ├── packages_linux.c │ │ │ ├── packages_nbsd.c │ │ │ ├── packages_nix.c │ │ │ ├── packages_nosupport.c │ │ │ ├── packages_obsd.c │ │ │ ├── packages_sunos.c │ │ │ └── packages_windows.c │ │ ├── physicaldisk/ │ │ │ ├── physicaldisk.h │ │ │ ├── physicaldisk_apple.c │ │ │ ├── physicaldisk_bsd.c │ │ │ ├── physicaldisk_haiku.c │ │ │ ├── physicaldisk_linux.c │ │ │ ├── physicaldisk_nosupport.c │ │ │ ├── physicaldisk_sunos.c │ │ │ └── physicaldisk_windows.c │ │ ├── physicalmemory/ │ │ │ ├── physicalmemory.c │ │ │ ├── physicalmemory.h │ │ │ ├── physicalmemory_apple.m │ │ │ ├── physicalmemory_linux.c │ │ │ └── physicalmemory_nosupport.c │ │ ├── poweradapter/ │ │ │ ├── poweradapter.h │ │ │ ├── poweradapter_apple.c │ │ │ ├── poweradapter_linux.c │ │ │ └── poweradapter_nosupport.c │ │ ├── processes/ │ │ │ ├── processes.h │ │ │ ├── processes_bsd.c │ │ │ ├── processes_haiku.c │ │ │ ├── processes_linux.c │ │ │ ├── processes_nbsd.c │ │ │ ├── processes_nosupport.c │ │ │ ├── processes_obsd.c │ │ │ └── processes_windows.c │ │ ├── publicip/ │ │ │ ├── publicip.c │ │ │ └── publicip.h │ │ ├── sound/ │ │ │ ├── audio_oss_sunos.h │ │ │ ├── sound.h │ │ │ ├── sound_apple.c │ │ │ ├── sound_bsd.c │ │ │ ├── sound_haiku.cpp │ │ │ ├── sound_linux.c │ │ │ ├── sound_nbsd.c │ │ │ ├── sound_nosupport.c │ │ │ ├── sound_obsd.c │ │ │ ├── sound_sunos.c │ │ │ └── sound_windows.cpp │ │ ├── swap/ │ │ │ ├── swap.h │ │ │ ├── swap_apple.c │ │ │ ├── swap_bsd.c │ │ │ ├── swap_haiku.c │ │ │ ├── swap_linux.c │ │ │ ├── swap_nosupport.c │ │ │ ├── swap_obsd.c │ │ │ ├── swap_sunos.c │ │ │ └── swap_windows.c │ │ ├── terminalfont/ │ │ │ ├── terminalfont.c │ │ │ ├── terminalfont.h │ │ │ ├── terminalfont_android.c │ │ │ ├── terminalfont_apple.m │ │ │ ├── terminalfont_linux.c │ │ │ └── terminalfont_windows.c │ │ ├── terminalshell/ │ │ │ ├── terminalshell.c │ │ │ ├── terminalshell.h │ │ │ ├── terminalshell_linux.c │ │ │ └── terminalshell_windows.c │ │ ├── terminalsize/ │ │ │ ├── terminalsize.h │ │ │ ├── terminalsize_linux.c │ │ │ └── terminalsize_windows.c │ │ ├── terminaltheme/ │ │ │ ├── terminaltheme.c │ │ │ └── terminaltheme.h │ │ ├── theme/ │ │ │ ├── theme.h │ │ │ ├── theme_apple.c │ │ │ ├── theme_linux.c │ │ │ ├── theme_nosupport.c │ │ │ └── theme_windows.c │ │ ├── tpm/ │ │ │ ├── tpm.h │ │ │ ├── tpm_apple.c │ │ │ ├── tpm_bsd.c │ │ │ ├── tpm_linux.c │ │ │ ├── tpm_nosupport.c │ │ │ └── tpm_windows.c │ │ ├── uptime/ │ │ │ ├── uptime.h │ │ │ ├── uptime_bsd.c │ │ │ ├── uptime_haiku.c │ │ │ ├── uptime_linux.c │ │ │ ├── uptime_sunos.c │ │ │ └── uptime_windows.c │ │ ├── users/ │ │ │ ├── users.h │ │ │ ├── users_linux.c │ │ │ ├── users_nosupport.c │ │ │ ├── users_obsd.c │ │ │ └── users_windows.c │ │ ├── version/ │ │ │ ├── version.c │ │ │ └── version.h │ │ ├── vulkan/ │ │ │ ├── vulkan.c │ │ │ └── vulkan.h │ │ ├── wallpaper/ │ │ │ ├── wallpaper.h │ │ │ ├── wallpaper_apple.m │ │ │ ├── wallpaper_linux.c │ │ │ ├── wallpaper_nosupport.c │ │ │ └── wallpaper_windows.c │ │ ├── weather/ │ │ │ ├── weather.c │ │ │ └── weather.h │ │ ├── wifi/ │ │ │ ├── wifi.h │ │ │ ├── wifi_android.c │ │ │ ├── wifi_apple.m │ │ │ ├── wifi_bsd.c │ │ │ ├── wifi_linux.c │ │ │ ├── wifi_nbsd.c │ │ │ ├── wifi_nosupport.c │ │ │ ├── wifi_obsd.c │ │ │ └── wifi_windows.c │ │ ├── wm/ │ │ │ ├── wm.h │ │ │ ├── wm_apple.m │ │ │ ├── wm_linux.c │ │ │ ├── wm_nosupport.c │ │ │ └── wm_windows.c │ │ ├── wmtheme/ │ │ │ ├── wmtheme.h │ │ │ ├── wmtheme_apple.m │ │ │ ├── wmtheme_linux.c │ │ │ ├── wmtheme_nosupport.c │ │ │ └── wmtheme_windows.c │ │ └── zpool/ │ │ ├── libzfs_simplified.h │ │ ├── zpool.c │ │ └── zpool.h │ ├── fastfetch.c │ ├── fastfetch.h │ ├── fastfetch_config.h.in │ ├── fastfetch_datatext.h.in │ ├── flashfetch.c │ ├── logo/ │ │ ├── ascii/ │ │ │ ├── adelie.txt │ │ │ ├── aeon.txt │ │ │ ├── aeros.txt │ │ │ ├── aerynos.txt │ │ │ ├── afterglow.txt │ │ │ ├── aix.txt │ │ │ ├── almalinux.txt │ │ │ ├── alpine.txt │ │ │ ├── alpine2.txt │ │ │ ├── alpine2_small.txt │ │ │ ├── alpine3_small.txt │ │ │ ├── alpine_small.txt │ │ │ ├── alter.txt │ │ │ ├── altlinux.txt │ │ │ ├── amazon.txt │ │ │ ├── amazon_linux.txt │ │ │ ├── amiga.txt │ │ │ ├── amogos.txt │ │ │ ├── anarchy.txt │ │ │ ├── android.txt │ │ │ ├── android_small.txt │ │ │ ├── anduinos.txt │ │ │ ├── antergos.txt │ │ │ ├── antix.txt │ │ │ ├── anushos.txt │ │ │ ├── aoscos.txt │ │ │ ├── aoscos_old.txt │ │ │ ├── aoscosretro.txt │ │ │ ├── aoscosretro_small.txt │ │ │ ├── aperture.txt │ │ │ ├── apricity.txt │ │ │ ├── arch.txt │ │ │ ├── arch2.txt │ │ │ ├── arch3.txt │ │ │ ├── arch_old.txt │ │ │ ├── arch_small.txt │ │ │ ├── archbox.txt │ │ │ ├── archcraft.txt │ │ │ ├── archcraft2.txt │ │ │ ├── archlabs.txt │ │ │ ├── archstrike.txt │ │ │ ├── arco.txt │ │ │ ├── arco_small.txt │ │ │ ├── arkane.txt │ │ │ ├── armbian.txt │ │ │ ├── armbian2.txt │ │ │ ├── arselinux.txt │ │ │ ├── artix.txt │ │ │ ├── artix2.txt │ │ │ ├── artix2_small.txt │ │ │ ├── artix_small.txt │ │ │ ├── arya.txt │ │ │ ├── asahi.txt │ │ │ ├── asahi2.txt │ │ │ ├── aster.txt │ │ │ ├── asteroidos.txt │ │ │ ├── astos.txt │ │ │ ├── astra_linux.txt │ │ │ ├── athenaos.txt │ │ │ ├── athenaos_old.txt │ │ │ ├── aurora.txt │ │ │ ├── axos.txt │ │ │ ├── azos.txt │ │ │ ├── bedrock.txt │ │ │ ├── bedrock_small.txt │ │ │ ├── biglinux.txt │ │ │ ├── bitrig.txt │ │ │ ├── blackarch.txt │ │ │ ├── blackmesa.txt │ │ │ ├── blackpanther.txt │ │ │ ├── blag.txt │ │ │ ├── blankon.txt │ │ │ ├── bluelight.txt │ │ │ ├── bodhi.txt │ │ │ ├── bonsai.txt │ │ │ ├── bredos.txt │ │ │ ├── bsd.txt │ │ │ ├── bunsenlabs.txt │ │ │ ├── cachyos.txt │ │ │ ├── cachyos_small.txt │ │ │ ├── calculate.txt │ │ │ ├── calinixos.txt │ │ │ ├── calinixos_small.txt │ │ │ ├── carbs.txt │ │ │ ├── cbl_mariner.txt │ │ │ ├── celos.txt │ │ │ ├── center.txt │ │ │ ├── centos.txt │ │ │ ├── centos_small.txt │ │ │ ├── cereus.txt │ │ │ ├── chakra.txt │ │ │ ├── chaletos.txt │ │ │ ├── chapeau.txt │ │ │ ├── chimera_linux.txt │ │ │ ├── chonkysealos.txt │ │ │ ├── chrom.txt │ │ │ ├── cleanjaro.txt │ │ │ ├── cleanjaro_small.txt │ │ │ ├── clear_linux.txt │ │ │ ├── clearos.txt │ │ │ ├── clover.txt │ │ │ ├── cobalt.txt │ │ │ ├── codex.txt │ │ │ ├── condres.txt │ │ │ ├── cosmic.txt │ │ │ ├── crux.txt │ │ │ ├── crux_small.txt │ │ │ ├── crystal.txt │ │ │ ├── cucumber.txt │ │ │ ├── cuerdos.txt │ │ │ ├── cutefishos.txt │ │ │ ├── cuteos.txt │ │ │ ├── cyberos.txt │ │ │ ├── cycledream.txt │ │ │ ├── dahlia.txt │ │ │ ├── darkos.txt │ │ │ ├── debian.txt │ │ │ ├── debian_small.txt │ │ │ ├── deepin.txt │ │ │ ├── desaos.txt │ │ │ ├── devuan.txt │ │ │ ├── devuan_small.txt │ │ │ ├── dietpi.txt │ │ │ ├── dracos.txt │ │ │ ├── dragonfly.txt │ │ │ ├── dragonfly_old.txt │ │ │ ├── dragonfly_small.txt │ │ │ ├── drauger.txt │ │ │ ├── droidian.txt │ │ │ ├── elbrus.txt │ │ │ ├── elementary.txt │ │ │ ├── elementary_small.txt │ │ │ ├── elive.txt │ │ │ ├── emmabuntus.txt │ │ │ ├── emperoros.txt │ │ │ ├── encryptos.txt │ │ │ ├── endeavouros.txt │ │ │ ├── endeavouros_small.txt │ │ │ ├── endless.txt │ │ │ ├── enso.txt │ │ │ ├── eshanizedos.txt │ │ │ ├── eurolinux.txt │ │ │ ├── evolutionos.txt │ │ │ ├── evolutionos_old.txt │ │ │ ├── evolutionos_small.txt │ │ │ ├── eweos.txt │ │ │ ├── exherbo.txt │ │ │ ├── exodia_predator.txt │ │ │ ├── fastfetch.txt │ │ │ ├── fedora.txt │ │ │ ├── fedora2_small.txt │ │ │ ├── fedora_coreos.txt │ │ │ ├── fedora_kinoite.txt │ │ │ ├── fedora_old.txt │ │ │ ├── fedora_sericea.txt │ │ │ ├── fedora_silverblue.txt │ │ │ ├── fedora_small.txt │ │ │ ├── femboyos.txt │ │ │ ├── feren.txt │ │ │ ├── filotimo.txt │ │ │ ├── finnix.txt │ │ │ ├── floflis.txt │ │ │ ├── freebsd.txt │ │ │ ├── freebsd_small.txt │ │ │ ├── freemint.txt │ │ │ ├── frugalware.txt │ │ │ ├── funtoo.txt │ │ │ ├── furreto.txt │ │ │ ├── galliumos.txt │ │ │ ├── garuda.txt │ │ │ ├── garuda_dragon.txt │ │ │ ├── garuda_small.txt │ │ │ ├── gentoo.txt │ │ │ ├── gentoo_small.txt │ │ │ ├── ghostbsd.txt │ │ │ ├── ghostfreak.txt │ │ │ ├── glaucus.txt │ │ │ ├── gnewsense.txt │ │ │ ├── gnome.txt │ │ │ ├── gnu.txt │ │ │ ├── gobolinux.txt │ │ │ ├── goldendoglinux.txt │ │ │ ├── grapheneos.txt │ │ │ ├── grombyang.txt │ │ │ ├── guix.txt │ │ │ ├── guix_small.txt │ │ │ ├── gxde.txt │ │ │ ├── haiku.txt │ │ │ ├── haiku2.txt │ │ │ ├── haiku_small.txt │ │ │ ├── hamonikr.txt │ │ │ ├── hardclanz.txt │ │ │ ├── harmonyos.txt │ │ │ ├── hash.txt │ │ │ ├── hce.txt │ │ │ ├── heliumos.txt │ │ │ ├── huayra.txt │ │ │ ├── hybrid.txt │ │ │ ├── hydroos.txt │ │ │ ├── hyperbola.txt │ │ │ ├── hyperbola_small.txt │ │ │ ├── hypros.txt │ │ │ ├── iglunix.txt │ │ │ ├── instantos.txt │ │ │ ├── interix.txt │ │ │ ├── irix.txt │ │ │ ├── ironclad.txt │ │ │ ├── itc.txt │ │ │ ├── januslinux.txt │ │ │ ├── kaisen.txt │ │ │ ├── kali.txt │ │ │ ├── kali_small.txt │ │ │ ├── kalpa_desktop.txt │ │ │ ├── kaos.txt │ │ │ ├── kdelinux.txt │ │ │ ├── kdeneon.txt │ │ │ ├── kernelos.txt │ │ │ ├── kibojoe.txt │ │ │ ├── kiss.txt │ │ │ ├── kiss2.txt │ │ │ ├── kogaion.txt │ │ │ ├── korora.txt │ │ │ ├── krassos.txt │ │ │ ├── kslinux.txt │ │ │ ├── kubuntu.txt │ │ │ ├── kylin.txt │ │ │ ├── lainos.txt │ │ │ ├── langitketujuh.txt │ │ │ ├── laxeros.txt │ │ │ ├── lede.txt │ │ │ ├── lfs.txt │ │ │ ├── libreelec.txt │ │ │ ├── lilidog.txt │ │ │ ├── lingmo.txt │ │ │ ├── linspire.txt │ │ │ ├── linux.txt │ │ │ ├── linux_small.txt │ │ │ ├── linuxlite.txt │ │ │ ├── linuxlite_small.txt │ │ │ ├── linuxmint.txt │ │ │ ├── linuxmint2.txt │ │ │ ├── linuxmint_old.txt │ │ │ ├── linuxmint_small.txt │ │ │ ├── live_raizo.txt │ │ │ ├── lliurex.txt │ │ │ ├── lmde.txt │ │ │ ├── locos.txt │ │ │ ├── lubuntu.txt │ │ │ ├── lunar.txt │ │ │ ├── macaronios.txt │ │ │ ├── macos.txt │ │ │ ├── macos2.txt │ │ │ ├── macos2_small.txt │ │ │ ├── macos3.txt │ │ │ ├── macos_small.txt │ │ │ ├── mageia.txt │ │ │ ├── mageia_small.txt │ │ │ ├── magix.txt │ │ │ ├── magpieos.txt │ │ │ ├── mainsailos.txt │ │ │ ├── mainsailos_small.txt │ │ │ ├── mandriva.txt │ │ │ ├── manjaro.txt │ │ │ ├── manjaro_small.txt │ │ │ ├── massos.txt │ │ │ ├── matuusos.txt │ │ │ ├── maui.txt │ │ │ ├── mauna.txt │ │ │ ├── meowix.txt │ │ │ ├── mer.txt │ │ │ ├── midnightbsd.txt │ │ │ ├── midos.txt │ │ │ ├── midos_old.txt │ │ │ ├── minimal.txt │ │ │ ├── minix.txt │ │ │ ├── miracle_linux.txt │ │ │ ├── mos.txt │ │ │ ├── msys2.txt │ │ │ ├── mx.txt │ │ │ ├── mx2.txt │ │ │ ├── mx_small.txt │ │ │ ├── namib.txt │ │ │ ├── nekos.txt │ │ │ ├── neptune.txt │ │ │ ├── netbsd.txt │ │ │ ├── netbsd2.txt │ │ │ ├── netbsd_small.txt │ │ │ ├── nethydra.txt │ │ │ ├── netrunner.txt │ │ │ ├── nexalinux.txt │ │ │ ├── nitrux.txt │ │ │ ├── nixos.txt │ │ │ ├── nixos_old.txt │ │ │ ├── nixos_old_small.txt │ │ │ ├── nixos_small.txt │ │ │ ├── nobara.txt │ │ │ ├── nomadbsd.txt │ │ │ ├── nuros.txt │ │ │ ├── nurunner.txt │ │ │ ├── nutyx.txt │ │ │ ├── obarun.txt │ │ │ ├── obrevenge.txt │ │ │ ├── obsidianos.txt │ │ │ ├── omnios.txt │ │ │ ├── openbsd.txt │ │ │ ├── openbsd_small.txt │ │ │ ├── openeuler.txt │ │ │ ├── openindiana.txt │ │ │ ├── openkylin.txt │ │ │ ├── openmamba.txt │ │ │ ├── openmandriva.txt │ │ │ ├── openstage.txt │ │ │ ├── opensuse.txt │ │ │ ├── opensuse_leap.txt │ │ │ ├── opensuse_leap_old.txt │ │ │ ├── opensuse_microos.txt │ │ │ ├── opensuse_slowroll.txt │ │ │ ├── opensuse_small.txt │ │ │ ├── opensuse_tumbleweed.txt │ │ │ ├── opensuse_tumbleweed2.txt │ │ │ ├── opensuse_tumbleweed_old.txt │ │ │ ├── opensuse_tumbleweed_small.txt │ │ │ ├── openwrt.txt │ │ │ ├── opnsense.txt │ │ │ ├── oracle.txt │ │ │ ├── orchid.txt │ │ │ ├── orchid_small.txt │ │ │ ├── oreon.txt │ │ │ ├── os2warp.txt │ │ │ ├── os_elbrus.txt │ │ │ ├── osmc.txt │ │ │ ├── pacbsd.txt │ │ │ ├── panwah.txt │ │ │ ├── parabola.txt │ │ │ ├── parabola_small.txt │ │ │ ├── parch.txt │ │ │ ├── pardus.txt │ │ │ ├── parrot.txt │ │ │ ├── parsix.txt │ │ │ ├── pcbsd.txt │ │ │ ├── pclinuxos.txt │ │ │ ├── pearos.txt │ │ │ ├── pengwin.txt │ │ │ ├── pentoo.txt │ │ │ ├── peppermint.txt │ │ │ ├── peropesis.txt │ │ │ ├── phyos.txt │ │ │ ├── pikaos.txt │ │ │ ├── pisi.txt │ │ │ ├── pnm_linux.txt │ │ │ ├── pop.txt │ │ │ ├── pop_small.txt │ │ │ ├── porteus.txt │ │ │ ├── postmarketos.txt │ │ │ ├── postmarketos_small.txt │ │ │ ├── prismlinux.txt │ │ │ ├── prismlinux_small.txt │ │ │ ├── proxmox.txt │ │ │ ├── puffos.txt │ │ │ ├── puppy.txt │ │ │ ├── pureos.txt │ │ │ ├── pureos_small.txt │ │ │ ├── q4os.txt │ │ │ ├── qts.txt │ │ │ ├── qubes.txt │ │ │ ├── qubyt.txt │ │ │ ├── quibian.txt │ │ │ ├── quirinux.txt │ │ │ ├── radix.txt │ │ │ ├── raspbian.txt │ │ │ ├── raspbian_small.txt │ │ │ ├── ravynos.txt │ │ │ ├── rebornos.txt │ │ │ ├── rebornos_small.txt │ │ │ ├── redcore.txt │ │ │ ├── redos.txt │ │ │ ├── redos_small.txt │ │ │ ├── redstar.txt │ │ │ ├── refracta.txt │ │ │ ├── regata.txt │ │ │ ├── regolith.txt │ │ │ ├── rengeos.txt │ │ │ ├── rhaymos.txt │ │ │ ├── rhel.txt │ │ │ ├── rhel_old.txt │ │ │ ├── rhel_small.txt │ │ │ ├── rhino.txt │ │ │ ├── rocky.txt │ │ │ ├── rocky_small.txt │ │ │ ├── rosa.txt │ │ │ ├── sabayon.txt │ │ │ ├── sabotage.txt │ │ │ ├── sailfish.txt │ │ │ ├── salentos.txt │ │ │ ├── salientos.txt │ │ │ ├── salix.txt │ │ │ ├── sambabox.txt │ │ │ ├── sasanqua.txt │ │ │ ├── scientific.txt │ │ │ ├── secureblue.txt │ │ │ ├── semc.txt │ │ │ ├── septor.txt │ │ │ ├── serene.txt │ │ │ ├── serpent_os.txt │ │ │ ├── sharklinux.txt │ │ │ ├── shastraos.txt │ │ │ ├── shebang.txt │ │ │ ├── siduction.txt │ │ │ ├── skiffos.txt │ │ │ ├── slackel.txt │ │ │ ├── slackware.txt │ │ │ ├── slackware_small.txt │ │ │ ├── sleeperos.txt │ │ │ ├── sleeperos_small.txt │ │ │ ├── slitaz.txt │ │ │ ├── smartos.txt │ │ │ ├── snigdhaos.txt │ │ │ ├── soda.txt │ │ │ ├── solaris.txt │ │ │ ├── solaris_small.txt │ │ │ ├── solus.txt │ │ │ ├── source_mage.txt │ │ │ ├── sparky.txt │ │ │ ├── spoinkos.txt │ │ │ ├── star.txt │ │ │ ├── steamdeck.txt │ │ │ ├── steamdeck_small.txt │ │ │ ├── steamos.txt │ │ │ ├── stock_linux.txt │ │ │ ├── sulin.txt │ │ │ ├── summitos.txt │ │ │ ├── suse.txt │ │ │ ├── swagarch.txt │ │ │ ├── t2.txt │ │ │ ├── t2_small.txt │ │ │ ├── tails.txt │ │ │ ├── tatra.txt │ │ │ ├── tearch.txt │ │ │ ├── templeos.txt │ │ │ ├── tileos.txt │ │ │ ├── torizoncore.txt │ │ │ ├── trisquel.txt │ │ │ ├── truenas_scale.txt │ │ │ ├── tuxedo_os.txt │ │ │ ├── twister.txt │ │ │ ├── ublinux.txt │ │ │ ├── ublinux_small.txt │ │ │ ├── ubuntu.txt │ │ │ ├── ubuntu_budgie.txt │ │ │ ├── ubuntu_cinnamon.txt │ │ │ ├── ubuntu_gnome.txt │ │ │ ├── ubuntu_kylin.txt │ │ │ ├── ubuntu_mate.txt │ │ │ ├── ubuntu_old.txt │ │ │ ├── ubuntu_old2.txt │ │ │ ├── ubuntu_old2_small.txt │ │ │ ├── ubuntu_small.txt │ │ │ ├── ubuntu_studio.txt │ │ │ ├── ubuntu_sway.txt │ │ │ ├── ubuntu_touch.txt │ │ │ ├── ubuntu_unity.txt │ │ │ ├── ultramarine.txt │ │ │ ├── ultramarine_small.txt │ │ │ ├── unifi.txt │ │ │ ├── univalent.txt │ │ │ ├── univention.txt │ │ │ ├── unknown.txt │ │ │ ├── uos.txt │ │ │ ├── urukos.txt │ │ │ ├── uwuntu.txt │ │ │ ├── valhalla.txt │ │ │ ├── vanilla.txt │ │ │ ├── vanilla2.txt │ │ │ ├── vanilla_small.txt │ │ │ ├── venom.txt │ │ │ ├── venom_small.txt │ │ │ ├── vincentos.txt │ │ │ ├── vnux.txt │ │ │ ├── void.txt │ │ │ ├── void2.txt │ │ │ ├── void2_small.txt │ │ │ ├── void_small.txt │ │ │ ├── vzlinux.txt │ │ │ ├── wii_linux.txt │ │ │ ├── windows.txt │ │ │ ├── windows_11.txt │ │ │ ├── windows_11_small.txt │ │ │ ├── windows_2025.txt │ │ │ ├── windows_8.txt │ │ │ ├── windows_95.txt │ │ │ ├── wolfos.txt │ │ │ ├── xcp_ng.txt │ │ │ ├── xenia.txt │ │ │ ├── xenia_old.txt │ │ │ ├── xeroarch.txt │ │ │ ├── xferience.txt │ │ │ ├── xinux.txt │ │ │ ├── xray_os.txt │ │ │ ├── xubuntu.txt │ │ │ ├── yiffos.txt │ │ │ ├── zorin.txt │ │ │ ├── zos.txt │ │ │ └── zraxyl.txt │ │ ├── builtin.c │ │ ├── image/ │ │ │ ├── im6.c │ │ │ ├── im7.c │ │ │ ├── image.c │ │ │ └── image.h │ │ ├── logo.c │ │ └── logo.h │ ├── modules/ │ │ ├── battery/ │ │ │ ├── battery.c │ │ │ ├── battery.h │ │ │ └── option.h │ │ ├── bios/ │ │ │ ├── bios.c │ │ │ ├── bios.h │ │ │ └── option.h │ │ ├── bluetooth/ │ │ │ ├── bluetooth.c │ │ │ ├── bluetooth.h │ │ │ └── option.h │ │ ├── bluetoothradio/ │ │ │ ├── bluetoothradio.c │ │ │ ├── bluetoothradio.h │ │ │ └── option.h │ │ ├── board/ │ │ │ ├── board.c │ │ │ ├── board.h │ │ │ └── option.h │ │ ├── bootmgr/ │ │ │ ├── bootmgr.c │ │ │ ├── bootmgr.h │ │ │ └── option.h │ │ ├── break/ │ │ │ ├── break.c │ │ │ ├── break.h │ │ │ └── option.h │ │ ├── brightness/ │ │ │ ├── brightness.c │ │ │ ├── brightness.h │ │ │ └── option.h │ │ ├── btrfs/ │ │ │ ├── btrfs.c │ │ │ ├── btrfs.h │ │ │ └── option.h │ │ ├── camera/ │ │ │ ├── camera.c │ │ │ ├── camera.h │ │ │ └── option.h │ │ ├── chassis/ │ │ │ ├── chassis.c │ │ │ ├── chassis.h │ │ │ └── option.h │ │ ├── colors/ │ │ │ ├── colors.c │ │ │ ├── colors.h │ │ │ └── option.h │ │ ├── command/ │ │ │ ├── command.c │ │ │ ├── command.h │ │ │ └── option.h │ │ ├── cpu/ │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ └── option.h │ │ ├── cpucache/ │ │ │ ├── cpucache.c │ │ │ ├── cpucache.h │ │ │ └── option.h │ │ ├── cpuusage/ │ │ │ ├── cpuusage.c │ │ │ ├── cpuusage.h │ │ │ └── option.h │ │ ├── cursor/ │ │ │ ├── cursor.c │ │ │ ├── cursor.h │ │ │ └── option.h │ │ ├── custom/ │ │ │ ├── custom.c │ │ │ ├── custom.h │ │ │ └── option.h │ │ ├── datetime/ │ │ │ ├── datetime.c │ │ │ ├── datetime.h │ │ │ └── option.h │ │ ├── de/ │ │ │ ├── de.c │ │ │ ├── de.h │ │ │ └── option.h │ │ ├── disk/ │ │ │ ├── disk.c │ │ │ ├── disk.h │ │ │ └── option.h │ │ ├── diskio/ │ │ │ ├── diskio.c │ │ │ ├── diskio.h │ │ │ └── option.h │ │ ├── display/ │ │ │ ├── display.c │ │ │ ├── display.h │ │ │ └── option.h │ │ ├── dns/ │ │ │ ├── dns.c │ │ │ ├── dns.h │ │ │ └── option.h │ │ ├── editor/ │ │ │ ├── editor.c │ │ │ ├── editor.h │ │ │ └── option.h │ │ ├── font/ │ │ │ ├── font.c │ │ │ ├── font.h │ │ │ └── option.h │ │ ├── gamepad/ │ │ │ ├── gamepad.c │ │ │ ├── gamepad.h │ │ │ └── option.h │ │ ├── gpu/ │ │ │ ├── gpu.c │ │ │ ├── gpu.h │ │ │ └── option.h │ │ ├── host/ │ │ │ ├── host.c │ │ │ ├── host.h │ │ │ └── option.h │ │ ├── icons/ │ │ │ ├── icons.c │ │ │ ├── icons.h │ │ │ └── option.h │ │ ├── initsystem/ │ │ │ ├── initsystem.c │ │ │ ├── initsystem.h │ │ │ └── option.h │ │ ├── kernel/ │ │ │ ├── kernel.c │ │ │ ├── kernel.h │ │ │ └── option.h │ │ ├── keyboard/ │ │ │ ├── keyboard.c │ │ │ ├── keyboard.h │ │ │ └── option.h │ │ ├── lm/ │ │ │ ├── lm.c │ │ │ ├── lm.h │ │ │ └── option.h │ │ ├── loadavg/ │ │ │ ├── loadavg.c │ │ │ ├── loadavg.h │ │ │ └── option.h │ │ ├── locale/ │ │ │ ├── locale.c │ │ │ ├── locale.h │ │ │ └── option.h │ │ ├── localip/ │ │ │ ├── localip.c │ │ │ ├── localip.h │ │ │ └── option.h │ │ ├── logo/ │ │ │ ├── logo.c │ │ │ ├── logo.h │ │ │ └── option.h │ │ ├── media/ │ │ │ ├── media.c │ │ │ ├── media.h │ │ │ └── option.h │ │ ├── memory/ │ │ │ ├── memory.c │ │ │ ├── memory.h │ │ │ └── option.h │ │ ├── modules.c │ │ ├── modules.h │ │ ├── monitor/ │ │ │ ├── monitor.c │ │ │ ├── monitor.h │ │ │ └── option.h │ │ ├── mouse/ │ │ │ ├── mouse.c │ │ │ ├── mouse.h │ │ │ └── option.h │ │ ├── netio/ │ │ │ ├── netio.c │ │ │ ├── netio.h │ │ │ └── option.h │ │ ├── opencl/ │ │ │ ├── opencl.c │ │ │ ├── opencl.h │ │ │ └── option.h │ │ ├── opengl/ │ │ │ ├── opengl.c │ │ │ ├── opengl.h │ │ │ └── option.h │ │ ├── options.h │ │ ├── os/ │ │ │ ├── option.h │ │ │ ├── os.c │ │ │ └── os.h │ │ ├── packages/ │ │ │ ├── option.h │ │ │ ├── packages.c │ │ │ └── packages.h │ │ ├── physicaldisk/ │ │ │ ├── option.h │ │ │ ├── physicaldisk.c │ │ │ └── physicaldisk.h │ │ ├── physicalmemory/ │ │ │ ├── option.h │ │ │ ├── physicalmemory.c │ │ │ └── physicalmemory.h │ │ ├── player/ │ │ │ ├── option.h │ │ │ ├── player.c │ │ │ └── player.h │ │ ├── poweradapter/ │ │ │ ├── option.h │ │ │ ├── poweradapter.c │ │ │ └── poweradapter.h │ │ ├── processes/ │ │ │ ├── option.h │ │ │ ├── processes.c │ │ │ └── processes.h │ │ ├── publicip/ │ │ │ ├── option.h │ │ │ ├── publicip.c │ │ │ └── publicip.h │ │ ├── separator/ │ │ │ ├── option.h │ │ │ ├── separator.c │ │ │ └── separator.h │ │ ├── shell/ │ │ │ ├── option.h │ │ │ ├── shell.c │ │ │ └── shell.h │ │ ├── sound/ │ │ │ ├── option.h │ │ │ ├── sound.c │ │ │ └── sound.h │ │ ├── swap/ │ │ │ ├── option.h │ │ │ ├── swap.c │ │ │ └── swap.h │ │ ├── terminal/ │ │ │ ├── option.h │ │ │ ├── terminal.c │ │ │ └── terminal.h │ │ ├── terminalfont/ │ │ │ ├── option.h │ │ │ ├── terminalfont.c │ │ │ └── terminalfont.h │ │ ├── terminalsize/ │ │ │ ├── option.h │ │ │ ├── terminalsize.c │ │ │ └── terminalsize.h │ │ ├── terminaltheme/ │ │ │ ├── option.h │ │ │ ├── terminaltheme.c │ │ │ └── terminaltheme.h │ │ ├── theme/ │ │ │ ├── option.h │ │ │ ├── theme.c │ │ │ └── theme.h │ │ ├── title/ │ │ │ ├── option.h │ │ │ ├── title.c │ │ │ └── title.h │ │ ├── tpm/ │ │ │ ├── option.h │ │ │ ├── tpm.c │ │ │ └── tpm.h │ │ ├── uptime/ │ │ │ ├── option.h │ │ │ ├── uptime.c │ │ │ └── uptime.h │ │ ├── users/ │ │ │ ├── option.h │ │ │ ├── users.c │ │ │ └── users.h │ │ ├── version/ │ │ │ ├── option.h │ │ │ ├── version.c │ │ │ └── version.h │ │ ├── vulkan/ │ │ │ ├── option.h │ │ │ ├── vulkan.c │ │ │ └── vulkan.h │ │ ├── wallpaper/ │ │ │ ├── option.h │ │ │ ├── wallpaper.c │ │ │ └── wallpaper.h │ │ ├── weather/ │ │ │ ├── option.h │ │ │ ├── weather.c │ │ │ └── weather.h │ │ ├── wifi/ │ │ │ ├── option.h │ │ │ ├── wifi.c │ │ │ └── wifi.h │ │ ├── wm/ │ │ │ ├── option.h │ │ │ ├── wm.c │ │ │ └── wm.h │ │ ├── wmtheme/ │ │ │ ├── option.h │ │ │ ├── wmtheme.c │ │ │ └── wmtheme.h │ │ └── zpool/ │ │ ├── option.h │ │ ├── zpool.c │ │ └── zpool.h │ └── options/ │ ├── display.c │ ├── display.h │ ├── general.c │ ├── general.h │ ├── logo.c │ └── logo.h └── tests/ ├── color.c ├── duration.c ├── format.c ├── list.c ├── strbuf.c ├── testlogo-hardcolors.fflogo └── testlogo-softcolors.fflogo