summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Marçalo <raroma09@gmail.com>2022-10-24 14:39:37 +0100
committerRafael Marçalo <raroma09@gmail.com>2022-10-24 14:39:37 +0100
commit7e03a49d9876b4b6caf749533f29fbeebba47265 (patch)
treeb9f337e1e7c517bf25b40ebd9c85c47e94619df0
parenta04983a91a70c909c83a7373274d1000ea5b7819 (diff)
Updated god wordsHEADmaster
-rw-r--r--Makefile8
-rw-r--r--README.md12
-rw-r--r--godwords.c (renamed from tongues.c)0
-rw-r--r--session.h2
4 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 4cf502d..43100f2 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/README.md b/README.md
index da3d632..cb13cbe 100644
--- a/README.md
+++ b/README.md
@@ -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`
diff --git a/tongues.c b/godwords.c
index 5b90cdf..5b90cdf 100644
--- a/tongues.c
+++ b/godwords.c
diff --git a/session.h b/session.h
index 283e429..48a6257 100644
--- a/session.h
+++ b/session.h
@@ -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);