ntfy/cmd/subscribe_windows.go
Philipp Heckel 6d601ad141 macOS
2022-05-09 21:25:00 -04:00

16 lines
345 B
Go

package cmd
const (
scriptExt = "bat"
scriptHeader = ""
clientCommandDescriptionSuffix = `The default config file for all client commands is %AppData%\ntfy\client.yml.`
)
var (
scriptLauncher = []string{"cmd.exe", "/Q", "/C"}
)
func defaultConfigFile() string {
return defaultConfigFileWindows()
}