aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnser <rostgans@tutamail.com>2026-07-04 18:42:09 +0200
committerAnser <rostgans@tutamail.com>2026-07-31 11:11:38 +0200
commit980dc94ba445d815856f5795fe2ab4ebb04b865c (patch)
treedc0bf636c8c48b5d475b3c678a57a91fbb6cdd91
init commit
-rw-r--r--Makefile11
-rw-r--r--README.md8
-rw-r--r--src/cfetch.c3
3 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ef4a208
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+CC = gcc
+CFLAGS = -Wall -Wextra -Werror
+
+all: cfetch
+
+cfetch:
+ $(CC) $(CFLAGS) -o cfetch src/cfetch.c
+ @echo "Finished install of cfetch!"
+
+clean:
+ rm -f cfetch
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..12aa395
--- /dev/null
+++ b/README.md
@@ -0,0 +1,8 @@
+# Idee
+- fastfetch / commiefetch in C
+- with emphasis on commiefetch, i want communism stuff but in C !
+
+# Reference
+- [Commiefetch](https://github.com/amalxloop/commiefetch)
+- [Fastfetch](https://github.com/fastfetch-cli/fastfetch)
+ - Which is in C, so i can copie stuff ?
diff --git a/src/cfetch.c b/src/cfetch.c
new file mode 100644
index 0000000..9b6bdc2
--- /dev/null
+++ b/src/cfetch.c
@@ -0,0 +1,3 @@
+int main(void) {
+ return 0;
+}