]> git.ayabusa.dev Git - thoryum.git/commitdiff
init commit
authorAyabusa <lebgpub@gmail.com>
Thu, 4 Jun 2026 18:13:29 +0000 (20:13 +0200)
committerAyabusa <lebgpub@gmail.com>
Thu, 4 Jun 2026 18:13:29 +0000 (20:13 +0200)
.gitignore [new file with mode: 0644]
LICENSE.txt [new file with mode: 0644]
Makefile [new file with mode: 0644]
README.txt [new file with mode: 0644]
src/main.c [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..d9b4f01
--- /dev/null
@@ -0,0 +1 @@
+/build/*
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644 (file)
index 0000000..c3197f4
--- /dev/null
@@ -0,0 +1,7 @@
+"THE BEER-WARE LICENSE" (Revision 42):
+Ayabusa wrote this project. (contact <at> ayabusa <dot> dev)
+
+As long as you retain this notice you can do whatever you want with this stuff. 
+If we meet some day, and you think this stuff is worth it, you can buy me a 
+beer in return.
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..24d9fb2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+CFLAGS = -Wall -Wextra -fsanitize=address -g
+SRC = src/main.c
+OBJ = build/main.o
+RES = build/Thoryum
+
+all: comp
+       $(CC) $(CFLAGS) $(OBJ) -o $(RES)
+
+comp: $(SRC)
+       mkdir -p build
+       $(CC) $(CFLAGS) -c $(SRC) -o $(OBJ)
+
+clean:
+       $(RM) $(OBJ) $(RES)
diff --git a/README.txt b/README.txt
new file mode 100644 (file)
index 0000000..10c14ac
--- /dev/null
@@ -0,0 +1,44 @@
+
+
+▄▄▄█████▓ ██░ ██  ▒█████   ██▀███ ▓██   ██▓ █    ██  ███▄ ▄███▓
+▓  ██▒ ▓▒▓██░ ██▒▒██▒  ██▒▓██ ▒ ██▒▒██  ██▒ ██  ▓██▒▓██▒▀█▀ ██▒
+▒ ▓██░ ▒░▒██▀▀██░▒██░  ██▒▓██ ░▄█ ▒ ▒██ ██░▓██  ▒██░▓██    ▓██░
+░ ▓██▓ ░ ░▓█ ░██ ▒██   ██░▒██▀▀█▄   ░ ▐██▓░▓▓█  ░██░▒██    ▒██ 
+  ▒██▒ ░ ░▓█▒░██▓░ ████▓▒░░██▓ ▒██▒ ░ ██▒▓░▒▒█████▓ ▒██▒   ░██▒
+  ▒ ░░    ▒ ░░▒░▒░ ▒░▒░▒░ ░ ▒▓ ░▒▓░  ██▒▒▒ ░▒▓▒ ▒ ▒ ░ ▒░   ░  ░
+    ░     ▒ ░▒░ ░  ░ ▒ ▒░   ░▒ ░ ▒░▓██ ░▒░ ░░▒░ ░ ░ ░  ░      ░
+  ░       ░  ░░ ░░ ░ ░ ▒    ░░   ░ ▒ ▒ ░░   ░░░ ░ ░ ░      ░   
+          ░  ░  ░    ░ ░     ░     ░ ░        ░            ░   
+                                   ░ ░                         
+                                             - By Ayabusa, 2026
+
+===== Making Thorium more at home on Linux =====
+
+This software is about making the Thorium browser by Alex313031,
+easier to install and update on the GNU/Linux operating system.
+
+
+=== Why though ? ===
+
+The support for Thorium on Linux is not great.
+- No update support
+- Not on system packages (at least xbps on void)
+- Only available as shitty Appimages or Bin packages
+- Broken desktop file with the icon WM class
+- What the hell are AVX and SSE ???
+
+The Thoryum project aims to solve these issues by creating an
+out of the box experience and an update wrapper.
+
+
+=== This shit is fire ! How do I use it ? ===
+
+TODO : write some shit about using it
+
+
+=== Whatz the license ??? ===
+
+If you want to use it for any purpose, go for it. I won't put any
+moral boundaries on this, so be free ;)
+
+See more details in the really verbose and great License.txt file
diff --git a/src/main.c b/src/main.c
new file mode 100644 (file)
index 0000000..c23c0bc
--- /dev/null
@@ -0,0 +1,5 @@
+#include <stdio.h>
+
+int main() {
+       printf("Hello this is Thoryum ;)\n");
+}