//go:build !ci && !wasm && !test_web_driver && !android && !ios && !mobile && (linux || openbsd || freebsd || netbsd) package app import ( "os" "path/filepath" ) func rootConfigDir() string { desktopConfig, _ := os.UserConfigDir() return filepath.Join(desktopConfig, "fyne") }