diff --git a/README.md b/README.md index 15823df..93c0041 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,8 @@ Download and extract the latest binary from the [releases](https://git.burkey.co ## Setup +![ss](ss.png) + 1. Run `epochcli`. You will be taken through a setup process that configures the program and creates a config file at `$HOME/.config/epochcli/config.toml` 2. You can now use `epochcli` as a standalone updater, but it can also act as a launcher based on your configuration. You can always run `epochcli -c` to redo the configuration, or edit the config file manually diff --git a/config.go b/config.go index 8c900a9..1528716 100644 --- a/config.go +++ b/config.go @@ -38,7 +38,7 @@ func setupConfig(rerun bool) (*Config, error) { _, statErr := os.Stat(cfgPath) if rerun || os.IsNotExist(statErr) { - fmt.Println("Enter the path to your Wow directory below:") + fmt.Println("Enter the path to your Wow directory below. Use the full path without shortcuts like '~' (ex: /home/user/epoch):") var s string _, err = fmt.Scanln(&s) if err != nil { diff --git a/ss.png b/ss.png new file mode 100644 index 0000000..5fbfe6d Binary files /dev/null and b/ss.png differ