aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEl-BG-1970 <elouan.gros.fr@gmail.com>2021-10-13 15:05:40 +0200
committerEl-BG-1970 <elouan.gros.fr@gmail.com>2021-10-13 15:05:40 +0200
commit8190f10e4880b73cbd4c0d3694f38b6d5953bb4e (patch)
tree8f3d4d259688243cf83280f1a0affd2e4dc2449c
parent797b98eb587a43be14abfaef679da2ad2c5bf225 (diff)
downloadorg-to-conky-8190f10e4880b73cbd4c0d3694f38b6d5953bb4e.tar.gz
added readme
-rw-r--r--Makefile2
-rw-r--r--README.md13
2 files changed, 13 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a5fc211..a5c13fd 100644
--- a/Makefile
+++ b/Makefile
@@ -2,10 +2,8 @@ UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
CC=clang --std=gnu99
-CXX=clang --std=gnu++11
else
CC=clang --std=c99
-CXX=clang --std=c++11
endif
CFLAGS=-Wall -Wextra -Werror -g
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f589120
--- /dev/null
+++ b/README.md
@@ -0,0 +1,13 @@
+# Org to conky parser
+This is a small C project meant to parse and organize the contents of my EMACS org todolist, in order to display it on my desktop with Conky.
+
+## Getting started
+To get a copy of the project, clone the repository.
+To compile it, a simple `make` should do just fine.
+
+## Prerequisites
+This project is set to compile using `clang`, if you want to change that, go into the `Makefile` and edit the `CC` line.
+
+## Use with Conky
+- Compile the project
+- Add the following line to your conky config: `${exec /path/to/otc /path/to/todolist.org}`