diff --git a/README.md b/README.md index 29be6f3..26ec1e6 100644 --- a/README.md +++ b/README.md @@ -130,9 +130,9 @@ Usage of ./gspt: Use Icons -image string Show or Hide Image ( 'show' | 'hidden' ) - -v Do not display the cover art image. + -v Output version information and exit -version - Do not display the cover art image. + Output version information and exit ``` ## Configuration diff --git a/config/flags.go b/config/flags.go index bd776e4..75b4ed9 100644 --- a/config/flags.go +++ b/config/flags.go @@ -18,9 +18,9 @@ type Flag struct { func parseFlags() { flag.BoolVar(&Flags.Version, "v", false, - "Do not display the cover art image.") + "Output version information and exit") flag.BoolVar(&Flags.Version, "version", false, - "Do not display the cover art image.") + "Output version information and exit") flag.BoolVar(&Flags.UseIcons, "icons", Config.UseIcons, "Use Icons") flag.StringVar(&Flags.ConfigPath, "c", userConfigPath,