From b8969bf91a034fe848f77c6e670a5a158438ea6e Mon Sep 17 00:00:00 2001 From: Anser Date: Mon, 27 Jul 2026 21:54:56 +0200 Subject: added license info in some files --- Makefile | 9 +++++++++ src/cfetch.c | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/Makefile b/Makefile index a7c2107..8453234 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,12 @@ +# cfetch is my try to implement a neofetch/fastfetch/commiefetch clone in C. +# Copyright (C) 2026 Anser +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# + CC = gcc CFLAGS = -Wall -Wextra -Werror PREFIX ?= /usr/local diff --git a/src/cfetch.c b/src/cfetch.c index 596e44b..8108ab6 100644 --- a/src/cfetch.c +++ b/src/cfetch.c @@ -1,3 +1,12 @@ +/* cfetch is my try to implement a neofetch/fastfetch/commiefetch clone in C. +* Copyright (C) 2026 Anser +* +* This program is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +*/ + #include "modules/os/os.h" #include "modules/memory/memory.h" #include "modules/cpu/cpu.h" -- cgit v1.2.3