summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_windows.go
blob: 0c18272f1e3b4deaeb0b42512a52a3e6876eb114 (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"'`)
}