mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 12:56:31 -04:00
21 lines
650 B
Go
21 lines
650 B
Go
//go:build !windows
|
|
|
|
package backend
|
|
|
|
// 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 = "/"
|
|
IsWindows = false
|
|
)
|
|
|
|
// enableVirtualTerminalProcessing is a dummy function on UNIX-like systems (only needed on Windows)
|
|
// TODO remove after migration off of GPG, as pinentry is responsible for disabling ANSI escape sequence interpretation
|
|
func enableVirtualTerminalProcessing() {
|
|
return
|
|
}
|