diff options
author | Kevin Chabowski <kevin@kch42.de> | 2014-03-04 13:34:08 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2014-03-04 13:34:08 +0100 |
commit | c57bbb8cba359a789e78cad9e267ca062740e400 (patch) | |
tree | 50d73be6b8b4f513a9d1a82f9093d56b251638ca /README.markdown | |
parent | 8175ead867f2d478612e0a7f9d10a1522580bea3 (diff) | |
download | startpage-c57bbb8cba359a789e78cad9e267ca062740e400.tar.gz startpage-c57bbb8cba359a789e78cad9e267ca062740e400.tar.bz2 startpage-c57bbb8cba359a789e78cad9e267ca062740e400.zip |
A better README
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..346d386 --- /dev/null +++ b/README.markdown @@ -0,0 +1,31 @@ +A simple start page with a background image from [/r/EarthPorn](http://www.reddit.com/r/earthporn), weather from [yr.no](http://www.yr.no) and customizable links. + +## Screenshot +![Screenshot](http://i.imgur.com/u42QOZe.png) + +## Installation + +`go get github.com/kch42/startpage` + +## Configuration + +startpage uses two files in your home directory for configuration: + +### ~/.startpage-urls + +This describes the hyperlinks that are displayed on the startpage. A list of key-value-pairs. Each line is such a pair. Key and value are separated with `->`. The key is the title of the link, the value the URL. + +Example: + + github -> http://www.github.com + reddit -> http://www.reddit.com + go -> http://www.golang.org + example -> http://www.example.org + +### ~/.startpage-weather + +The place for the weather is stored here. startpage uses [yr.no](http://www.yr.no) to get weather data. Use the search box on that page to search for your place. You will then be redirected to an URL like this: `http://www.yr.no/place/<myplace>`. Put the `<myplace>` part into the `.startpage-weather` file. + +## Running + +If `$GOPATH/bin` is in your `$PATH`, you can run startpage with the command `startpage`. By default, startpage listens on port 25145. You can change that with a command line switch: `startpage -laddr :<port>`
\ No newline at end of file |