ntfy/cmd/subscribe_windows.go

16 lines
345 B
Go
Raw Normal View History

2022-05-09 22:22:52 +02:00
package cmd
const (
2022-05-10 03:25:00 +02:00
scriptExt = "bat"
scriptHeader = ""
clientCommandDescriptionSuffix = `The default config file for all client commands is %AppData%\ntfy\client.yml.`
2022-05-09 22:22:52 +02:00
)
2022-05-10 03:25:00 +02:00
var (
scriptLauncher = []string{"cmd.exe", "/Q", "/C"}
)
2022-05-09 22:22:52 +02:00
func defaultConfigFile() string {
2022-05-10 03:25:00 +02:00
return defaultConfigFileWindows()
2022-05-09 22:22:52 +02:00
}