mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-08-28 04:46:41 -04:00
13 lines
430 B
Go
13 lines
430 B
Go
//go:build !windows
|
|
|
|
package offline
|
|
|
|
// EntryRoot path to libmutton entry directory
|
|
var EntryRoot = home + "/.local/share/libmutton"
|
|
var ConfigDir = home + "/.config/libmutton"
|
|
var ConfigPath = ConfigDir + "/libmutton.ini"
|
|
|
|
// PathSeparator defines the character used to separate directories in a path (platform-specific)
|
|
const PathSeparator = "/"
|
|
const Windows = false // TODO temporary, remove after native sync is implemented
|