diff --git a/README.md b/README.md index 6bf9e19..2ab53a2 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ See [latest release](https://github.com/goark/apod/releases/latest). ``` $ apod -h -OpenPGP (RFC 4880) packet visualizer by golang. +CLI Tool for Astronomy Picture of the Day with NASA API. Usage: apod [flags] @@ -35,7 +35,7 @@ Available Commands: Flags: --api-key string NASA API key - --config string Config file (default /home/spiegel/.config/apod/config.yaml) + --config string Config file (default /home/username/.config/apod/config.yaml) --count int count randomly chosen images --date string date of the APOD image to retrieve (YYYY-MM-DD) --debug for debug @@ -71,7 +71,7 @@ Flags: Global Flags: --api-key string NASA API key - --config string Config file (default /home/spiegel/.config/apod/config.yaml) + --config string Config file (default /home/username/.config/apod/config.yaml) --count int count randomly chosen images --date string date of the APOD image to retrieve (YYYY-MM-DD) --debug for debug @@ -114,7 +114,7 @@ Flags: Global Flags: --api-key string NASA API key - --config string Config file (default /home/spiegel/.config/apod/config.yaml) + --config string Config file (default /home/username/.config/apod/config.yaml) --count int count randomly chosen images --date string date of the APOD image to retrieve (YYYY-MM-DD) --debug for debug diff --git a/facade/facade.go b/facade/facade.go index e56b087..84be745 100644 --- a/facade/facade.go +++ b/facade/facade.go @@ -37,8 +37,8 @@ var ( func newRootCmd(ui *rwi.RWI, args []string) *cobra.Command { rootCmd := &cobra.Command{ Use: Name, - Short: "OpenPGP packet visualizer", - Long: "OpenPGP (RFC 4880) packet visualizer by golang.", + Short: "CLI Tool for Astronomy Picture of the Day with NASA API", + Long: "CLI Tool for Astronomy Picture of the Day with NASA API.", RunE: func(cmd *cobra.Command, args []string) error { return debugPrint(ui, errs.Wrap(ecode.ErrNoCommand)) },