https://github.com/nikchan5/sf-superfetch-
https://github.com/nikchan5/sf-superfetch-
c c-language fetch neofetch sf
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/nikchan5/sf-superfetch-
- Owner: Nikchan5
- License: apache-2.0
- Created: 2025-03-07T19:01:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T19:07:22.000Z (over 1 year ago)
- Last Synced: 2025-03-07T20:20:32.396Z (over 1 year ago)
- Topics: c, c-language, fetch, neofetch, sf
- Language: C
- Homepage:
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```markdown
# SuperFetch
SuperFetch is a lightweight alternative to NeoFetch for Windows, written in C. It displays system information such as computer name, CPU architecture, core count, RAM details, and GPU model.
## Features
- Displays essential system information
- Shows CPU core count
- Reports total and available RAM
- Detects GPU model
- ASCII logo
## Installation
### 1. Install via Git
Open Command Prompt (cmd) or PowerShell and run:
```sh
git clone https://github.com/your-username/SuperFetch.git
cd SuperFetch
```
### 2. Compilation
Compile the program using MinGW or MSVC.
#### MinGW (GCC)
```sh
gcc -o superfetch superfetch.c -Wall
```
#### MSVC (cl.exe)
```sh
cl superfetch.c
```
### 3. Running the Program
After compilation, run:
```sh
./superfetch
```
## Future Plans
- Add CPU load monitoring
- Display CPU and GPU temperature
- Show OS version
- Improve ASCII art
## License
This project is licensed under the Apache License 2.0.
```