{"id":15403209,"url":"https://github.com/woodruffw/screenfetch-c","last_synced_at":"2025-04-16T03:12:12.300Z","repository":{"id":71717787,"uuid":"12252298","full_name":"woodruffw/screenfetch-c","owner":"woodruffw","description":"A rewrite of screenFetch in C.","archived":false,"fork":false,"pushed_at":"2020-09-22T03:17:49.000Z","size":2183,"stargazers_count":74,"open_issues_count":3,"forks_count":17,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-16T03:12:02.765Z","etag":null,"topics":["c","screenfetch"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/woodruffw.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":"2013-08-20T19:35:57.000Z","updated_at":"2025-02-08T14:13:18.000Z","dependencies_parsed_at":"2023-05-16T10:15:11.817Z","dependency_job_id":null,"html_url":"https://github.com/woodruffw/screenfetch-c","commit_stats":{"total_commits":547,"total_committers":13,"mean_commits":42.07692307692308,"dds":"0.44789762340036565","last_synced_commit":"2d76746f07e502818051652878c334f9eb93ea6d"},"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/woodruffw%2Fscreenfetch-c","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/woodruffw%2Fscreenfetch-c/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/woodruffw%2Fscreenfetch-c/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/woodruffw%2Fscreenfetch-c/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/woodruffw","download_url":"https://codeload.github.com/woodruffw/screenfetch-c/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249188428,"owners_count":21227015,"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":["c","screenfetch"],"created_at":"2024-10-01T16:06:45.762Z","updated_at":"2025-04-16T03:12:12.282Z","avatar_url":"https://github.com/woodruffw.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"screenfetch-c\n=============\n\n[![Build Status](https://img.shields.io/github/workflow/status/woodruffw/screenfetch-c/CI/master)](https://github.com/woodruffw/screenfetch-c/actions?query=workflow%3ACI)\n\n## Current Version: 1.6 (release)\n\nscreenfetch-c is an attempt to rewrite screenFetch, a popular shell\nscript that displays system information and an ASCII logo, in the C\nlanguage.\nLike the original screenFetch, screenfetch-c is meant to be compatible with a number of systems, including the BSDs, Solaris, GNU/Linux, OS X, and Windows.\n\n## Installing screenfetch-c\n\n### Dependencies:\nscreenfetch-c only relies on libraries that come on virtually every system.\n\n* On Linux, OpenGL is used to detect the GPU. In most package managers, this is listed as `libgl-dev`.\n\n* On Linux and Solaris, libX11 is required. In most package managers, this is listed as `libX11-dev`.\n\nInstalling screenfetch-c is very simple:\n\n```bash\n$ git clone https://www.github.com/woodruffw/screenfetch-c.git\n$ cd screenfetch-c\n$ make\n```\n\nIf you want to disable colors you can run `make COLORS=0` instead.\n\n_Note:_ For Solaris, `make` *must* be GNU make. If it isn't, use `gmake`. Using regular (Sun) `make` will cause strange errors.\n\n### Arch Linux\n\nscreenfetch-c is availible on the [AUR](https://aur.archlinux.org/packages/screenfetch-c-git/)\n\n### OS X\n\nscreenfetch-c is also available via Homebrew!\n\nTo install it, just run the following:\n\n```bash\n$ brew install woodruffw/screenfetch-c/screenfetch-c\n```\n\n## Removal:\nRemoving screenfetch-c is just as easy as installing it:\n\n```bash\n$ sudo make uninstall\n```\n\nIf you installed it via Homebrew:\n\n```bash\n$ brew rm screenfetch-c\n$ brew untap woodruffw/screenfetch-c # optional\n```\n\n## Contributing\n\nThere are a number of things that still need to be tested or completed in screenfetch-c.\n\nIf you think that you can test/fix/improve one or more of them, feel free to fork and issue requests back to me.\n\nIn particular, the following things still need to be done:\n\n- Improve error checking and handling.\n- Matching screencapture capabilities on Windows with OS X/Linux/BSD/Solaris\n- Improve RAM/HDD detection on BSD\n- Fix manual mode on Windows\n- Improve features on Android\n- Improve/replace configuration format and parser\n\n## Notes on MinGW\nShell detection on the MinGW build is limited.\nYou must set the `SHELL` environment variable manually if you're running screenfetch-c from command prompt or PowerShell.\nFor command prompt that's `set SHELL=cmd.exe` and for PowerShell it's `$env:SHELL = \"PowerShell\"`.\n\nYou can also run screenfetch-c from a batch script\n``` batch\n@echo off\nset SHELL=cmd.exe\necho.\ncmd /C screenfetch-c.exe\necho.\npause\n```\nor a PowerShell script\n``` ps1\n$env:SHELL = \"PowerShell\"\nWrite-Host \"\"\nInvoke-Expression -Command:\"cmd /C screenfetch-c.exe\"\nWrite-Host \"\nPress any key to continue ...\"\n$x = $host.UI.RawUI.ReadKey(\"NoEcho,IncludeKeyDown\")\n```\nif you prefer to start it with a double click.\n\nUnlike PowerShell the Windows command prompt doesn't support ANSI colors by default. You can deactivate colors if you build with `make COLORS=0`.\nHowever there's a neat project called [ANSICON](https://github.com/adoxa/ansicon) which allows you to enable colors in command prompt by running screenfetch-c with `cmd /C ansicon.exe screenfetch-c.exe`.\n\n## Current Known Compatibility:\n\n_Note:_ These are only the ones that have actually been tested (so far). screenfetch-c may very well work on many of the untested distros, so feel free to try it.\n\n- [x] OS X\n- [x] Windows (Cygwin, MSYS2, MinGW)\n- [x] Arch Linux\n- [x] Fedora\n- [x] Linux Mint\n- [x] LMDE\n- [x] Ubuntu (including derivatives)\n- [x] Fedora\n- [x] Debian\n- [x] CrunchBang\n- [x] Gentoo\n- [ ] Funtoo\n- [x] FreeBSD\n- [x] OpenBSD\n- [ ] NetBSD\n- [ ] DragonFlyBSD\n- [ ] OpenSUSE\n- [ ] Mandriva/Mandrake\n- [ ] Slackware\n- [x] Red Hat (RHEL)\n- [ ] Frugalware\n- [x] Peppermint\n- [ ] SolusOS\n- [ ] Mageia\n- [ ] ParabolaGNU/Linux-libre\n- [ ] Viperr\n- [x] LinuxDeepin\n- [ ] Chakra\n- [x] Fuduntu\n- [x] Trisquel\n- [ ] Manjaro\n- [x] ElementaryOS (styled as 'elementary OS')\n- [ ] Scientific Linux\n- [x] Backtrack Linux\n- [x] Kali Linux\n- [ ] Sabayon\n- [x] Android (requires -D \"Android\" flag)\n- [x] Linux (upon failure to detect a specific distro)\n- [x] Solaris (including SunOS, OpenSolaris, and OpenIndiana)\n- [x] Angstrom\n\n## License\nscreenfetch-c is licensed under the MIT license.\n\nFor the exact terms, see the [license](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwoodruffw%2Fscreenfetch-c","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwoodruffw%2Fscreenfetch-c","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwoodruffw%2Fscreenfetch-c/lists"}