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

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() []byte {
	return []byte(
		`os:
  openCommand: 'cmd /c "start "" {{filename}}"'
  openLinkCommand: 'cmd /c "start "" {{link}}"'
  copyToClipboardCommand: 'cmd \c "echo -n {{str}} > /dev/clipboard"`)
}