1
0
Fork 0
mirror of https://github.com/Luzifer/sii.git synced 2024-10-18 13:24:20 +00:00
sii/cmd/sii-editor/paths_linux.go

16 lines
517 B
Go
Raw Normal View History

package main
var userConfigPath = "~/.config/sii-editor/config.yml"
var profilePaths = map[string]string{
// Linux default for non-Steam-profiles
pathATS: "~/.local/share/American Truck Simulator/profiles",
pathETS2: "~/.local/share/Euro Truck Simulator 2/profiles",
}
var gamePaths = map[string]string{
// Linux default installation path for Steam games
pathATS: "~/.local/share/Steam/steamapps/common/American Truck Simulator",
pathETS2: "~/.local/share/Steam/steamapps/common/Euro Truck Simulator 2",
}