fix config lookups for windows

make config.go sensitive to the windows environment.
This commit is contained in:
Greg Gauthier 2024-07-10 22:42:05 +01:00
parent ea29c29531
commit 8c0e3a896d
3 changed files with 50 additions and 4 deletions

33
README-CONFIGS.md Normal file
View File

@ -0,0 +1,33 @@
# FOR WINDOWS USERS
## MPV
MPV insists on opening a GUI (or "pseudo-gui" as they call it) window, whether you like it or not.
So, here is the best mpv.conf I could come up with, under those
circumstances:
```ini
[default]
terminal=yes
audio-display=no
video=no
force-window=no
window-minimized=yes
idle=yes
```
The window will still be created, but at least, it will be minimized to the taskbar.
You should put this file in: `%USERPROFILE%\AppData\Roaming\mpv.net\mpv.conf`
## RADIOSTATIONS.INI
Make sure your `gostations.exe` is somewhere in your searchable %PATH%. Then, you should
only need to change the player.command option:
```ini
[DEFAULT]
radio_browser.api=all.api.radio-browser.info
player.command=mpvnet.exe
player.options=--no-video
menu_items.max=9999
```
# FOR EVERYONE ELSE
Continue as you are. The sane people don't need to do anything different.

View File

@ -16,3 +16,6 @@ go mod tidy
go build -o "$buildpath" -ldflags "-X main.version=$VERSION_STRING"
& $buildpath -v
Copy-Item $buildpath $HOME/.local/bin -Force

View File

@ -4,12 +4,13 @@ import (
"errors"
"log"
"os"
"runtime"
"strconv"
"github.com/alyu/configparser"
)
//str2int
// str2int
func str2int(strnum string) int {
i, err := strconv.Atoi(strnum)
if err != nil {
@ -18,12 +19,21 @@ func str2int(strnum string) int {
return i
}
func configStat(configFile string) string{
func configStat(configFile string) string {
xdgConfigPath := os.Getenv("XDG_CONFIG_HOME")
if xdgConfigPath == "" {
xdgConfigPath = os.Getenv("HOME")+"/.config"
if runtime.GOOS == "windows" {
xdgConfigPath = os.Getenv("USERPROFILE") + "\\.config"
} else {
xdgConfigPath = os.Getenv("HOME") + "/.config"
}
}
if runtime.GOOS == "windows" {
configFile = xdgConfigPath + "\\gostations\\" + configFile
} else {
configFile = xdgConfigPath + "/gostations/" + configFile
}
if _, err := os.Stat(configFile); errors.Is(err, os.ErrNotExist) {
log.Printf("Your stations config file seems to be missing. A default will be generated.")