{"id":20218474,"url":"https://github.com/mrcheateugene/nanofetch","last_synced_at":"2026-02-28T05:39:23.669Z","repository":{"id":46546718,"uuid":"492805470","full_name":"MrCheatEugene/nanofetch","owner":"MrCheatEugene","description":"Nanofetch is a very simple CLI hardware info fetcher, written in C++. ","archived":false,"fork":false,"pushed_at":"2025-08-04T12:28:49.000Z","size":1231,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-08T19:14:39.051Z","etag":null,"topics":["hardware","hw","neofetch","sysinfo"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MrCheatEugene.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-05-16T11:28:32.000Z","updated_at":"2025-08-04T12:15:49.000Z","dependencies_parsed_at":"2025-08-04T14:12:05.376Z","dependency_job_id":"8c177f1d-b360-4ae6-ac52-63803c9d4de9","html_url":"https://github.com/MrCheatEugene/nanofetch","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/MrCheatEugene/nanofetch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCheatEugene%2Fnanofetch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCheatEugene%2Fnanofetch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCheatEugene%2Fnanofetch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCheatEugene%2Fnanofetch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MrCheatEugene","download_url":"https://codeload.github.com/MrCheatEugene/nanofetch/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrCheatEugene%2Fnanofetch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29925683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T19:37:42.220Z","status":"online","status_checked_at":"2026-02-28T02:00:07.010Z","response_time":90,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hardware","hw","neofetch","sysinfo"],"created_at":"2024-11-14T06:38:46.322Z","updated_at":"2026-02-28T05:39:23.633Z","avatar_url":"https://github.com/MrCheatEugene.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nanofetch\nNanofetch is a very simple CLI hardware info fetcher, written in C++. \n![Image](https://github.com/MrCheatEugene/nanofetch/blob/main/image.jpg?raw=true)\n\n# Quick Start\nIf you don't know how to build c++ code, then just download nanofetch.exe\u0026libcpuid.dll from the main branch or install DPKG file and run 'nanofetch' in terminal.\n\nBelow is a guide for advanced users, who want to modify sysinfo.\n# How to build?\n\n1. Install G++ on Linux or TDM-GCC on Windows(and if you're on windows - install libcpuid, for linux - you don't need it - it is included already)\n2. For windows, the compilation command is this:\n```\ng++.exe \"sysinfo.cpp\" -o \"sysinfo.exe\"  -I\"TDM-GCC-64\\include\" -I\"TDM-GCC-64\\x86_64-w64-mingw32\\include\" -I\"TDM-GCC-64\\lib\\gcc\\x86_64-w64-mingw32\\9.2.0\\include\" -I\"TDM-GCC-64\\lib\\gcc\\x86_64-w64-mingw32\\9.2.0\\include\\c++\" -L\"TDM-GCC-64\\lib\" -L\"TDM-GCC-64\\x86_64-w64-mingw32\\lib\" -lcpuid -static-libgcc\n```\nI've removed local paths that were used by Dev C++(I used it for writing and compiling sysinfo on Windows), but if you are having problems building - here is the original command:\n```\ng++.exe \"C:\\Users\\user\\Documents\\sysinfo\\sysinfo.cpp\" -o \"C:\\Users\\user\\Documents\\sysinfo\\sysinfo.exe\"  -I\"C:\\Program Files (x86)\\Embarcadero\\Dev-Cpp\\TDM-GCC-64\\include\" -I\"C:\\Program Files (x86)\\Embarcadero\\Dev-Cpp\\TDM-GCC-64\\x86_64-w64-mingw32\\include\" -I\"C:\\Program Files (x86)\\Embarcadero\\Dev-Cpp\\TDM-GCC-64\\lib\\gcc\\x86_64-w64-mingw32\\9.2.0\\include\" -I\"C:\\Program Files (x86)\\Embarcadero\\Dev-Cpp\\TDM-GCC-64\\lib\\gcc\\x86_64-w64-mingw32\\9.2.0\\include\\c++\" -L\"C:\\Program Files (x86)\\Embarcadero\\Dev-Cpp\\TDM-GCC-64\\lib\" -L\"C:\\Program Files (x86)\\Embarcadero\\Dev-Cpp\\TDM-GCC-64\\x86_64-w64-mingw32\\lib\" -lcpuid -static-libgcc\n```\n\nCompiler name: TDM-GCC 9.2.0 64-bit Release\n\n3. For Linux, compilation command is this:\n```\ng++ sysinfo.cpp -o mysysinfo -I ./incl-libs/ -L ./incl-libs/ -lcpuid \n```\nIncl-libs directory is avaliable in repository's main branch.\n\nAlso, you need to install libcpuid library using APT/DPKG/Pacman. DPKG package is avaliable in repository's main branch.\n# How to use?\n\nJust run sysinfo.exe(the libcpuid.dll must be near sysinfo.exe) or ./mysysinfo.\nAlso, you need to install libcpuid library (if you use Linux) using APT/DPKG/Pacman. DPKG package is avaliable in repository's main branch.\n# Supported Operating Systems\nSysInfo supports almost all linux distros and unix-based OS's. And also Windows.\n\nBut, on unknown hardware some things may not be correct.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrcheateugene%2Fnanofetch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrcheateugene%2Fnanofetch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrcheateugene%2Fnanofetch/lists"}