Skip to content

Commit

Permalink
Update README and usage text
Browse files Browse the repository at this point in the history
  • Loading branch information
zankich committed Jan 20, 2016
1 parent 8ad1f9e commit f766cae
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 45 deletions.
76 changes: 33 additions & 43 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,68 +1,58 @@
groku
=====

CLI utility for controlling your [Roku](https://www.roku.com/)
CLI remote for controlling your [Roku](https://www.roku.com/)

###Installation
You may download a precompiled binary

#####Windows
--
- [32bit](https://github.com/zankich/groku/releases/download/0.3/groku_0.3_windows_386.zip)
- [64bit](https://github.com/zankich/groku/releases/download/0.3/groku_0.3_windows_amd64.zip)
- [32bit](https://github.com/zankich/groku/releases/download/0.4/groku_0.4_windows_386.zip)
- [64bit](https://github.com/zankich/groku/releases/download/0.4/groku_0.4_windows_amd64.zip)

#####Linux
--
- [32bit](https://github.com/zankich/groku/releases/download/0.3/groku_0.3_linux_386.tar.gz)
- [64bit](https://github.com/zankich/groku/releases/download/0.3/groku_0.3_linux_amd64.tar.gz)
- [armhf](https://github.com/zankich/groku/releases/download/0.3/groku_0.3_linux_arm.tar.gz)
- [32bit](https://github.com/zankich/groku/releases/download/0.4/groku_0.4_linux_386.tar.gz)
- [64bit](https://github.com/zankich/groku/releases/download/0.4/groku_0.4_linux_amd64.tar.gz)
- [armhf](https://github.com/zankich/groku/releases/download/0.4/groku_0.4_linux_arm.tar.gz)

#####OSX
--
- [32bit](https://github.com/zankich/groku/releases/download/0.3/groku_0.3_darwin_386.zip)
- [64bit](https://github.com/zankich/groku/releases/download/0.3/groku_0.3_darwin_amd64.zip)
- [32bit](https://github.com/zankich/groku/releases/download/0.4/groku_0.4_darwin_386.zip)
- [64bit](https://github.com/zankich/groku/releases/download/0.4/groku_0.4_darwin_amd64.zip)

Or install from source
`go get github.com/zankich/groku`

###Usage
```
$ groku
NAME:
groku - roku CLI remote
USAGE:
groku [global options] command [command options] [arguments...]
VERSION:
0.3
COMMANDS:
home home
rev rev
fwd fwd
select select
left left
right right
down down
up up
back back
info info
backspace backspace
enter enter
search search
replay replay
play play/pause
discover discover roku on your local network
text send text to the roku
apps list installed apps on roku
app launch specified app
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--version, -v print the version
--help, -h show help
usage: groku [--version] [--help] <command> [<args>]
CLI remote for your Roku
Commands:
home Return to the home screen
rev Reverse
fwd Fast Forward
select Select
left Left
right Right
up Up
down Down
back Back
info Info
backspace Backspace
enter Enter
search Search
replay Replay
play Play
pause Pause
discover Discover a roku on your local network
text Send text to the Roku
apps List installed apps on your Roku
app Launch specified app
```
Play or pause current video:
`$ groku play`
Expand Down
6 changes: 4 additions & 2 deletions groku.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ const (
VERSION = "0.4"
USAGE = `usage: groku [--version] [--help] <command> [<args>]
CLI remote for your Roku
Commands:
home Return to the home screen
rev Reverse
Expand All @@ -37,8 +39,8 @@ Commands:
play Play
pause Pause
discover Discover a roku on your local network
text Send text to the roku
apps List installed apps on your roku
text Send text to the Roku
apps List installed apps on your Roku
app Launch specified app
`
)
Expand Down

0 comments on commit f766cae

Please sign in to comment.