diff --git a/README.md b/README.md
index af5928f..9599059 100644
--- a/README.md
+++ b/README.md
@@ -69,14 +69,24 @@
`c` |
Open Comments page on Browser |
-
+
`q` |
Quit App |
+
+ `r` |
+ Refresh HN Frontpage |
+
# Installation
+## Homebrew
+```
+brew tap piqoni/hn-text
+brew install hn-text
+```
+
## Binaries
Download binaries for your OS at [release page](https://github.com/piqoni/hn-text/releases), and chmod +x the file to allow execution.
@@ -85,3 +95,8 @@ If you use GO, you can install it directly:
```
go install github.com/piqoni/hn-text@latest
```
+
+Note: If you get "command not found", then likely your GOPATH/bin is not in your PATH. To add it, place the following to your ~/.bashrc or ~/.zshrc depending on your shell:
+```
+export PATH=${PATH}:`go env GOPATH`/bin
+```