summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_linux.go
blob: fe75b7322209593b274bfa8dbe46937096683e50 (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: `{{editor}} {{filename}}`,
		OpenCommand:         `sh -c "xdg-open {{filename}} >/dev/null"`,
		OpenLinkCommand:     `sh -c "xdg-open {{link}} >/dev/null"`,
	}
}