summary refs log tree commit diff stats
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-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
-01-22 01:24:02 +0000 committer James Booth <boothj5@gmail.com> 2016-01-22 01:24:02 +0000 Added boothj5_slack theme' href='/danisanti/profani-tty/commit/themes/boothj5_slack?id=3666eb4fd7709d927de0dbdfc827c39d4ba39ca1'>3666eb4f ^
71679a31 ^

3666eb4f ^



2f82f50a ^

1a3dc91e ^

3666eb4f ^






















f0837abf ^

3666eb4f ^










a952776b ^
3666eb4f ^
503e0ae3 ^
3666eb4f ^


f0837abf ^
3666eb4f ^
f0837abf ^
3666eb4f ^


f0837abf ^
3666eb4f ^



f0837abf ^
3666eb4f ^
f0837abf ^
3666eb4f ^
f4759cf3 ^
3666eb4f ^
3666eb4f ^

f0837abf ^
3666eb4f ^

abc2f0de ^
3666eb4f ^

f0837abf ^
3666eb4f ^
f4759cf3 ^

f0837abf ^



3666eb4f ^





84ccee20 ^
3666eb4f ^
f0837abf ^
72c1c496 ^
bab75cae ^
d3cc5bd7 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143