{"id":23547616,"url":"https://github.com/xeyossr/citch","last_synced_at":"2025-04-24T06:11:14.004Z","repository":{"id":263914763,"uuid":"891776688","full_name":"xeyossr/citch","owner":"xeyossr","description":"citch - fast system fetch written in c++ (nitch but c++)","archived":false,"fork":false,"pushed_at":"2024-12-18T16:46:16.000Z","size":1435,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T07:41:17.383Z","etag":null,"topics":["command-line","cpp","fastfetch","fetch","flashfetch","linux","neofetch","system","terminal"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xeyossr.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}},"created_at":"2024-11-20T23:51:15.000Z","updated_at":"2025-02-22T04:24:21.000Z","dependencies_parsed_at":"2024-11-21T02:00:20.012Z","dependency_job_id":null,"html_url":"https://github.com/xeyossr/citch","commit_stats":null,"previous_names":["xeyossr/citch"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeyossr%2Fcitch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeyossr%2Fcitch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeyossr%2Fcitch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeyossr%2Fcitch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xeyossr","download_url":"https://codeload.github.com/xeyossr/citch/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250573351,"owners_count":21452352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["command-line","cpp","fastfetch","fetch","flashfetch","linux","neofetch","system","terminal"],"created_at":"2024-12-26T09:17:29.620Z","updated_at":"2025-04-24T06:11:13.983Z","avatar_url":"https://github.com/xeyossr.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# `Citch`\n\n\u003ch3\u003e\n  Fast system fetch written in \u003ccode\u003e👑 C++ 👑\u003c/code\u003e\n\u003c/h3\u003e\n\u003cbr\u003e\n\n![preview](assets/preview.png)\n\n![License](https://img.shields.io/github/license/xeyossr/citch?style=for-the-badge)\n![Commits](https://img.shields.io/github/commit-activity/m/xeyossr/citch?style=for-the-badge)\n![AUR](https://img.shields.io/aur/version/citch?style=for-the-badge)\n![GitHub Repo stars](https://img.shields.io/github/stars/xeyossr/citch?style=for-the-badge)\n![GitHub issues](https://img.shields.io/github/issues/xeyossr/citch?style=for-the-badge)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/xeyossr/citch?style=for-the-badge)\n\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/xeyossr/citch?style=for-the-badge)\n\n\u003c/div\u003e\n\n**Citch** is a small and fastsystem fetch tool written fully in `C++`. If you're familiar with nitch (btw written in `Nim`), Citch is essentially its C++ version.\n\nWhy C++? Well, because I started learning C++ and couldn’t think of anything else, lmao\n\n\u003cbr\u003e\n\n# Installation\n\nIf you are using Arch Linux or an Arch-based distribution, you can download `citch` from AUR:\n\n```bash\nyay -S citch\n```\n\nIf you are not using an Arch-based distribution:\n\n```bash\ngit clone https://github.com/xeyossr/citch.git\ncd citch\nmkdir -p build \u0026\u0026 cd build\ncmake ..\nmake\nsudo cp build/citch /usr/bin/citch\n```\n\n# Usage\n\n```\ncitch\n```\n\nflags:\n\n```\n -gc --gen-config   | generate config file\n```\n\n\u003cbr\u003e\n\n# Configuration\n\n\u003e Before doing these, you need to create a configuration file with the `--gen-config` flag.\n\n### `~/.config/citch/config.json` - config file\n\n```json\n{\n  \"modules\": {\n    \"banner\": true,\n    \"colors\": true,\n    \"distro\": true,\n    \"hostname\": true,\n    \"kernel\": true,\n    \"memory\": true,\n    \"packages\": true,\n    \"shell\": true,\n    \"uptime\": true,\n    \"username\": true\n  }\n}\n```\n\n# Building 📦\n\n### 1) clone repo\n\n```fish\ngit clone https://github.com/xeyossr/citch\n```\n\n### 2) change dir (cd) to `citch`\n\n```fish\ncd citch\n```\n\n### 3) build program with `g++`\n\n```fish\ng++ citch.cpp -o citch\n```\n\n\u003cbr\u003e\n\n# File architecture 📁\n\n```fish\ncitch\n├── citch.cpp\n├── dist\n│   └── citch\n├── install.sh\n├── LICENSE\n├── modules\n│   ├── banners.cpp\n│   ├── fetch.h\n│   └── json.hpp\n└── README.md\n\n3 directories, 8 files\n```\n\n# Thanks for ideas \u0026 examples 💬\n\n- [nitch](https://github.com/ssleert/nitch)\n- [pfetch](https://github.com/dylanaraps/pfetch/)\n- [neofetch](https://github.com/dylanaraps/neofetch)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxeyossr%2Fcitch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxeyossr%2Fcitch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxeyossr%2Fcitch/lists"}