summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.org43
1 files changed, 24 insertions, 19 deletions
diff --git a/README.org b/README.org
index 126bc29..dd23ebe 100644
--- a/README.org
+++ b/README.org
@@ -1,34 +1,39 @@
 #+TITLE: Cetus
 
-Cetus is a wallpaper setting tool written in Go. This is a work in-progress.
+Cetus is a wallpaper tool written in Go. It can set wallpapers from various
+sources. Default behaviour is to set a random wallpaper.
 
 * Dependency
 - [[https://feh.finalrewind.org/][feh]]
 
 * 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.
-
-- [X] [[http://apod.nasa.gov/apod/astropix.html][Astronomy Picture of the Day]]
-- [X] Bing Photo of the Day
+- Set Daily, Weekly or Random wallpaper
 
 * Examples
-** Image of the Day
-*** Astronomy Picture of the Day
+** Daily wallpaper
+*** from Astronomy Picture of the Day
 #+BEGIN_SRC sh
-cetus -apod -apod-api=https://api.nasa.gov/planetary/apod \
-      -apod-api-key=DEMO_KEY
+cetus -apod -daily
 #+END_SRC
-*** Bing Photo of the Day
+*** from Bing Photo of the Day
 #+BEGIN_SRC sh
-cetus -bpod
+cetus -bpod -daily
 #+END_SRC
-** Set given wallpaper
+*** from Unsplash
 #+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
+cetus -unsplash -daily
+#+END_SRC
+*** from any service (choosen randomly)
+#+BEGIN_SRC sh
+cetus -daily
+#+END_SRC
+** Weekly wallpaper
+*** from Unsplash
+#+BEGIN_SRC sh
+cetus -unsplash -weekly
+#+END_SRC
+** Random wallpaper
+*** from Unsplash
+#+BEGIN_SRC sh
+cetus -unsplash -random
 #+END_SRC
n161' href='#n161'>161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246