1
0
Fork
You've already forked justafetch
0
justafetch: just a fetch written in ISO/IEC 9899:1999
  • C 96.7%
  • Makefile 3.3%
Find a file
2025年03月22日 20:28:44 -04:00
.clang-format add copyright to justafetch.c and make line length 79 chars (to match openbsd) 2025年03月15日 21:20:25 -04:00
.gitignore Initial commit 2025年03月15日 21:12:50 -04:00
cpu.c fix UB (uninitialized variable returned) in cpu.c; refactor logo code 2025年03月22日 20:27:56 -04:00
cpu.h add cpu support 2025年03月22日 19:12:32 -04:00
justafetch.c fix UB (uninitialized variable returned) in cpu.c; refactor logo code 2025年03月22日 20:27:56 -04:00
kernel.c reorganize repo and add kernel name/version printing 2025年03月22日 17:37:25 -04:00
kernel.h remove unused global and enums enum kernel and KERNEL in kernel.h 2025年03月22日 20:28:44 -04:00
logo.c fix UB (uninitialized variable returned) in cpu.c; refactor logo code 2025年03月22日 20:27:56 -04:00
logo.h fix UB (uninitialized variable returned) in cpu.c; refactor logo code 2025年03月22日 20:27:56 -04:00
Makefile Initial commit 2025年03月15日 21:12:50 -04:00
README Initial commit 2025年03月15日 21:12:50 -04:00

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.