update readme
This commit is contained in:
parent
5b39aa365e
commit
e630f0c4c9
21
README.md
21
README.md
|
@ -18,16 +18,31 @@ The Pomodoro Technique is simple and effective:
|
||||||
|
|
||||||
### Binaries
|
### Binaries
|
||||||
|
|
||||||
Binaries are available in the [releases section](https://github.com/kevinschoon/pomo/releases) on github.
|
Binaries are available for Linux and Darwin platforms in the [releases section](https://github.com/kevinschoon/pomo/releases) on github.
|
||||||
|
|
||||||
|
#### Linux
|
||||||
|
|
||||||
```
|
```
|
||||||
curl -L -o pomo https://github.com/kevinschoon/pomo/releases/download/0.3.0/pomo-0.3.0-linux
|
curl -L -o pomo https://github.com/kevinschoon/pomo/releases/download/0.4.0/pomo-0.4.0-linux-amd64
|
||||||
echo 2fb16d362d6ffef582fe5e8691272d93b021d14f32cbeda6895f0bb94d413903 pomo | sha256sum -c -
|
# Optionally verify file integrity
|
||||||
|
echo 2543baef75c58c01a246e8d79ac59c93 pomo | md5sum -c -
|
||||||
chmod +x pomo
|
chmod +x pomo
|
||||||
./pomo -v
|
./pomo -v
|
||||||
# Copy pomo to somewhere on your $PATH
|
# Copy pomo to somewhere on your $PATH
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Darwin
|
||||||
|
|
||||||
|
```
|
||||||
|
curl -L -o pomo https://github.com/kevinschoon/pomo/releases/download/0.4.0/pomo-0.4.0-darwin-amd64
|
||||||
|
# Optionally verify file integrity
|
||||||
|
[[ $(md5 -r pomo) != "7d5217f0e8f792f469a20ae86d4c35c2 pomo" ]] && echo "invalid hash!"
|
||||||
|
chmod +x pomo
|
||||||
|
./pomo -v
|
||||||
|
# Copy pomo to somewhere on your $PATH
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
### Source
|
### Source
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -144,15 +144,29 @@
|
||||||
|
|
||||||
<h3 id="binaries">Binaries</h3>
|
<h3 id="binaries">Binaries</h3>
|
||||||
|
|
||||||
<p>Binaries are available in the <a href="https://github.com/kevinschoon/pomo/releases">releases section</a> on github.</p>
|
<p>Binaries are available for Linux and Darwin platforms in the <a href="https://github.com/kevinschoon/pomo/releases">releases section</a> on github.</p>
|
||||||
|
|
||||||
<pre><code>curl -L -o pomo https://github.com/kevinschoon/pomo/releases/download/0.3.0/pomo-0.3.0-linux
|
<h4 id="linux">Linux</h4>
|
||||||
echo 2fb16d362d6ffef582fe5e8691272d93b021d14f32cbeda6895f0bb94d413903 pomo | sha256sum -c -
|
|
||||||
|
<pre><code>curl -L -o pomo https://github.com/kevinschoon/pomo/releases/download/0.4.0/pomo-0.4.0-linux-amd64
|
||||||
|
# Optionally verify file integrity
|
||||||
|
echo 2543baef75c58c01a246e8d79ac59c93 pomo | md5sum -c -
|
||||||
chmod +x pomo
|
chmod +x pomo
|
||||||
./pomo -v
|
./pomo -v
|
||||||
# Copy pomo to somewhere on your $PATH
|
# Copy pomo to somewhere on your $PATH
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
|
<h4 id="darwin">Darwin</h4>
|
||||||
|
|
||||||
|
<pre><code>curl -L -o pomo https://github.com/kevinschoon/pomo/releases/download/0.4.0/pomo-0.4.0-darwin-amd64
|
||||||
|
# Optionally verify file integrity
|
||||||
|
[[ $(md5 -r pomo) != "7d5217f0e8f792f469a20ae86d4c35c2 pomo" ]] && echo "invalid hash!"
|
||||||
|
chmod +x pomo
|
||||||
|
./pomo -v
|
||||||
|
# Copy pomo to somewhere on your $PATH
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
<h3 id="source">Source</h3>
|
<h3 id="source">Source</h3>
|
||||||
|
|
||||||
<pre><code> go get github.com/kevinschoon/pomo
|
<pre><code> go get github.com/kevinschoon/pomo
|
||||||
|
|
Loading…
Reference in New Issue