summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_linux.go
blob: 8f3223cfc9e85e998c8a9a0f6d7a63a729a22cf8 (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: 'sh -c "xdg-open {{filename}} >/dev/null"'
  openLinkCommand: 'sh -c "xdg-open {{link}} >/dev/null"'
  copyToClipboardCommand: 'bash -c "echo -n {{str}} | xclip -selection clipboard"'`)
}