summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_linux.go
blob: b9e195f9f973e0eaaac8faded7cad6eb4586feee (plain)
1
2
3
4
5
6
7
8
9
10
11
package config

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() OSConfig {
	return OSConfig{
		EditCommand:         ``,
		EditCommandTemplate: "",
		OpenCommand:         `xdg-open {{filename}} >/dev/null`,
		OpenLinkCommand:     `xdg-open {{link}} >/dev/null`,
	}
}