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

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