README.md 1.5 KB

Simple miscelaneous Linux utilities that teach you how stuff works

Because sometimes reinventing the wheel will teach you lots of great stuff about how the wheel works and how you can improve it!

Contents

Simple, mostly self-contained programs written in C that do the raw way the stuff that sometimes a full-blown DE would solve. Why, then, would I ever want to code something like these, or even use it?

Because they solve the same problems but with an order of magnitude less resource consumption. And also teach you what is really going on in the back while you do it.

These are all programs that are designed to be easy and fast to compile, and used in the terminal, making them suitable for pretty much any environment, even the simple console.

Instructions

Clone this repo and, where Makefiles aren't available yet, a simple:

$ gcc -Wall -o bin/program program.c

Or something similar should suffice for any one of the programs. There will be a binary placed in a bin/ directory of the cloned repository. Place that binary somewhere in your $PATH and you're good to go.

On the other hand, subdirectories for specific programs contain their own Makefiles (another study of mine!) and a simple

$ make

Is all you need.

At this time, I'm not including external config files for these programs. Edit the source code at the specific config bits and recompile to change how this works.

License

Copyright 2022 kzimmermann. All programs in this repo are released under the GNU GPL v3, except where otherwise noted.