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

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() []byte {
	return []byte(
		`os:
  openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'
  openLinkCommand: 'sh -c "xdg-open {{link}} >/dev/null"'`)
}