diff --git a/.gitignore b/.gitignore index c3e89d6..3a9e535 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ -goMP gomp +.idea *.jpg diff --git a/config/config.go b/config/config.go index 5838d0f..712356e 100644 --- a/config/config.go +++ b/config/config.go @@ -30,7 +30,7 @@ func ReadConfig() { viper.SetDefault(k, v) } viper.SetConfigName("config") - viper.AddConfigPath(HOME_DIR + "/.config/goMP") + viper.AddConfigPath(HOME_DIR + "/.config/gomp") err := viper.ReadInConfig() if err != nil { fmt.Println("Could Not Read Config file.") diff --git a/sample_config.yml b/sample_config.yml index 4a08768..9770be5 100644 --- a/sample_config.yml +++ b/sample_config.yml @@ -64,7 +64,7 @@ LASTFM_AUTO_CORRECT: 1 # 0 means it is turned off # for e.g togglePlayBack : [ "p", "SPACE", "]" ] # using the quotes is neccessary. # all the three keys now have the same function. - # To see Availabe Keys and Functions : https://github.com/aditya-K2/goMP#key-mappings + # To see Availabe Keys and Functions : https://github.com/aditya-K2/gomp#key-mappings # Caching # @@ -76,5 +76,5 @@ togglePlayBack : [ "p", "SPACE", "]" ] # using the quotes is neccessary. # 3. Fallback to the default image. # # -CACHE_DIR : "/path/to/the/cache/Directory" # for e.g "~/.config/goMP/cache/" +CACHE_DIR : "/path/to/the/cache/Directory" # for e.g "~/.config/gomp/cache/" # You will have to manually create this directory.