https://github.com/lennart1978/sysinfo
My personal small system info CLI app written in C
https://github.com/lennart1978/sysinfo
cli-app languagec linux-app
Last synced: 6 months ago
JSON representation
My personal small system info CLI app written in C
- Host: GitHub
- URL: https://github.com/lennart1978/sysinfo
- Owner: Lennart1978
- Created: 2024-08-08T09:30:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-30T02:53:53.000Z (about 1 year ago)
- Last Synced: 2025-04-09T16:04:19.451Z (6 months ago)
- Topics: cli-app, languagec, linux-app
- Language: C
- Homepage:
- Size: 172 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sysinfo
My personal small system info CLI app written in C.Included tools / gimmicks in this build: 'sysinfo', 'picinfo', 'ascii2c' and 'shuffle-ascii'.
See the videos below.
Build with meson:
```bash
mkdir builddir && meson setup builddir --buildtype=release && meson compile -C builddir
```
The 'picinfo' tool:
The 'shuffle-ascii' gimmick:
How to get an ASCII image into the compiled binary file:
1. Convert the picture with a tool like "jp2a" or "artem" to ASCII
2. You can use my small helper tool "ascii2c" to convert ASCII to a .c file
3. Include your .c file in your main program
4. Use "printf(ansi_pic);" in your code to display the colored image in the terminalHave fun !
Lennart