Files
ffmpeg-gui/internal/config/config_other.go
T
2026-07-29 19:33:46 +08:00

14 lines
183 B
Go

//go:build !windows
package config
import (
"os"
"path/filepath"
)
func appDataDir() string {
home, _ := os.UserHomeDir()
return filepath.Join(home, ".config", "ffmpeg-gui")
}