paleofetch

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 31e00671f085a5d410442c7db9119035de562163
parent 721972f8b552df0bd528b8de2d85666354ccc440
Author: Sridaran Thoniyil <sri7thon@gmail.com>
Date:   Fri,  8 May 2020 21:35:29 -0400

Move battery_config.sh to config_scripts folder

Diffstat:
MMakefile | 2+-
Rbattery_config.sh -> config_scripts/battery_config.sh | 0
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -8,7 +8,7 @@ clean: rm -f paleofetch $(CACHE)/paleofetch paleofetch: paleofetch.c paleofetch.h config.h - $(eval battery_path := $(shell ./battery_config.sh)) + $(eval battery_path := $(shell ./config_scripts/battery_config.sh)) $(CC) paleofetch.c -o paleofetch $(CFLAGS) -D $(battery_path) strip paleofetch diff --git a/battery_config.sh b/config_scripts/battery_config.sh