From d0871fcaaeeec388009dedee8de78b33f53af977 Mon Sep 17 00:00:00 2001 From: Zen Date: Fri, 14 Jan 2022 21:49:00 +0000 Subject: [PATCH] Added Makefile and README --- Makefile | 8 ++++++++ README.md | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 Makefile create mode 100644 README.md diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6b3d335 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +# This Makefile exists because it's my favorite way to simplify running groups of commands directly from the command line +# +# Variables +NOTHING = yet + +it-pretty: + @chmod +x init.sh + @./init.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..c44745e --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# Alchemy +A collection of scripts for working with bare metal + +## Commands +`make it-pretty` is meant to be run on a freshly installed operating system. +It installs some utilities that I rely on for maximum developmental efficiency and generally makes the terminal nicer to look at.