summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@inventati.org>2020-03-12 02:55:10 +0530
committerAndinus <andinus@inventati.org>2020-03-12 02:55:10 +0530
commit9db33380e4baadd725190c18f35810039c1c780e (patch)
treef7c5dd5bc5bf84041961b5f3a77b7896f7533a5e
parent6ceb7554067142bf83207c18e9d72d4b0ff83fea (diff)
downloadcetus-9db33380e4baadd725190c18f35810039c1c780e.tar.gz
Move README from org file to markdown
-rw-r--r--README.md41
-rw-r--r--README.org30
2 files changed, 41 insertions, 30 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..62dd24b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,41 @@
+# Cetus
+
+Cetus is a wallpaper setting tool written in Go. This is a work in-progress.
+
+## Dependency
+
+- [feh](https://feh.finalrewind.org/)
+
+## Features
+
+- Supports various Image of the Day services
+
+There are several Image of the Day services on the web, cetus will pull the
+latest image & set it as wallpaper.
+
+Currently it supports:
+
+- [Astronomy Picture of the Day](http://apod.nasa.gov/apod/astropix.html)
+
+## Examples
+
+### Image of the Day
+
+#### Astronomy Picture of the Day
+
+``` sh
+# Pull image from Astronomy Picture of the Day
+cetus -apod -apod-api=https://api.nasa.gov/planetary/apod \
+      -apod-api-key=DEMO_KEY
+```
+
+### Set given wallpaper
+
+``` sh
+# Local image as wallpaper
+cetus -img-path=/path/to/img
+
+# Remote image as wallpaper
+cetus -img-path=http://127.0.0.1
+
+```
diff --git a/README.org b/README.org
deleted file mode 100644
index 82b21ea..0000000
--- a/README.org
+++ /dev/null
@@ -1,30 +0,0 @@
-#+TITLE: Cetus
-
-Cetus is a wallpaper setting tool written in Go. This is a work in-progress.
-
-* Dependency
-** [[https://feh.finalrewind.org/][feh]]
-Required to set the wallpaper.
-* Examples
-** Image of the Day
-*** Astronomy Picture of the Day
-#+BEGIN_SRC sh
-cetus -apod -apod-api=https://api.nasa.gov/planetary/apod \
-      -apod-api-key=DEMO_KEY
-#+END_SRC
-** Set given wallpaper
-#+BEGIN_SRC sh
-# Local image as wallpaper
-cetus -img-path=/path/to/img
-
-# Remote image as wallpaper
-cetus -img-path=http://127.0.0.1
-#+END_SRC
-
-* Features
-** Supports various Image of the Day services
-There are several Image of the Day services on the web, cetus will pull the
-latest image & set it as wallpaper.
-*** DONE [[http://apod.nasa.gov/apod/astropix.html][Astronomy Picture of the Day]]
-** DONE Set given wallpaper
-Takes a path as input & sets it as wallpaper.