From 35ad00b21a1a407b3d70ec93528489b6153fead6 Mon Sep 17 00:00:00 2001 From: Odweta Date: Sat, 20 Dec 2025 20:21:24 +0100 Subject: [PATCH] added installing via make --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0d6a9e8 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +DIR := $(HOME)/.local/bin +OUTPUT_FILE_NAME := ofetch + +install: + mkdir -p $(DIR) + cp odwetafetch.sh $(DIR)/$(OUTPUT_FILE_NAME) + chmod 744 $(DIR)/$(OUTPUT_FILE_NAME)