subscribe_windows.go 357 B

123456789101112131415
  1. package cmd
  2. const (
  3. scriptExt = "bat"
  4. scriptHeader = ""
  5. clientCommandDescriptionSuffix = `The default config file for all client commands is %AppData%\ntfy\client.yml.`
  6. )
  7. var (
  8. scriptLauncher = []string{"cmd.exe", "/Q", "/C"}
  9. )
  10. func defaultClientConfigFile() string {
  11. return defaultClientConfigFileWindows()
  12. }