mirror of
https://github.com/Luzifer/sii.git
synced 2024-12-21 08:21:16 +00:00
15 lines
517 B
Go
15 lines
517 B
Go
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",
|
|
}
|