forked from carnivorecookies/justafetch
justafetch: just a fetch written in ISO/IEC 9899:1999
| .clang-format | add copyright to justafetch.c and make line length 79 chars (to match openbsd) | |
| .gitignore | Initial commit | |
| cpu.c | fix UB (uninitialized variable returned) in cpu.c; refactor logo code | |
| cpu.h | add cpu support | |
| justafetch.c | fix UB (uninitialized variable returned) in cpu.c; refactor logo code | |
| kernel.c | reorganize repo and add kernel name/version printing | |
| kernel.h |
remove unused global and enums enum kernel and KERNEL in kernel.h
|
|
| logo.c | fix UB (uninitialized variable returned) in cpu.c; refactor logo code | |
| logo.h | fix UB (uninitialized variable returned) in cpu.c; refactor logo code | |
| Makefile | Initial commit | |
| README | Initial commit | |
justafetch ========== justafetch is a tiny fetch written in ISO/IEC 9899:1999. All commits must compile under the TCC compiler. Compiling / Installation ======================== First, clone and change directory into the justafetch repository: $ git clone https://codeberg.org/carnivorecookies/justafetch $ cd justafetch To compile justafetch, use the make command: $ make Or for a debug build (meant for testing code), use the following: $ make debug To install, move the compiled binary to the appropriate directory: $ mv justafetch "$HOME"/.local/bin or: # mv justafetch /usr/local/bin Usage ===== Run justafetch with: $ justafetch License ======= justafetch is licensed under the ISC License, but some files may be licensed under a different license. Check the comment at the top of a file to see its license. If you want a file's license waived for you, make an Issue with the appropriate information and I may be able to waive the license for you.