diff options
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | README.md | 12 | ||||
-rw-r--r-- | godwords.c (renamed from tongues.c) | 0 | ||||
-rw-r--r-- | session.h | 2 |
4 files changed, 11 insertions, 11 deletions
@@ -1,13 +1,13 @@ build: clean - cc -o trt tongues.c session.c utils.c + cc -o gw godwords.c session.c utils.c clean: - rm -rf trt + rm -rf gw install: build mkdir -p /usr/local/bin - cp -f trt /usr/local/bin + cp -f gw /usr/local/bin chmod 755 /usr/local/bin uninstall: - rm -rf /usr/local/bin/trt + rm -rf /usr/local/bin/gw @@ -1,10 +1,10 @@ -# Timer Random Tongues -Tongues based on time and question randomness +# God Words +God words based on time and question randomness ## Inspiration -Inspired by Terry Davis TempleOS Timer Random Tongues which he used to communicate with God. +Inspired by Terry Davis TempleOS "God Words" which he used to communicate with God. -![TempleOS Timer Random Tongues](images/image.png) +![TempleOS God Words](images/image.png) ## How to Use @@ -18,8 +18,8 @@ Inspired by Terry Davis TempleOS Timer Random Tongues which he used to communica ### Run If you already have a `dictionary.dict` file in your path, just run: -`trt` +`gw` If you have the file saved in another folder, just type: -`trt /path/to/dictionary` +`gw /path/to/dictionary` @@ -1,4 +1,4 @@ #include <stdio.h> -/* Starts a oujia session using a inputted dictionary file */ +/* Starts a god words session using a inputted dictionary file */ void startSession (FILE *dictionary); |