summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_default_platform.go
blob: d052014541f1382764199d8d33ba57f6141acd75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build !windows && !linux
// +build !windows,!linux

package config

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() OSConfig {
	return OSConfig{
		Open:     "open -- {{filename}}",
		OpenLink: "open {{link}}",
	}
}