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
|
|
|
|
2022-06-02 16:50:05 +02:00
|
|
|
func defaultClientConfigFile() string {
|
2022-06-01 22:57:35 +02:00
|
|
|
return defaultClientConfigFileWindows()
|
2022-05-09 22:22:52 +02:00
|
|
|
}
|