Files
ntfy/cmd/subscribe_darwin.go
2026-01-17 17:51:33 -05:00

15 lines
373 B
Go

//go:build darwin
package cmd
const (
scriptExt = "sh"
scriptHeader = "#!/bin/sh\n"
clientCommandDescriptionSuffix = `The default config file for all client commands is /etc/ntfy/client.yml (if root user),
or "~/Library/Application Support/ntfy/client.yml" for all other users.`
)
var (
scriptLauncher = []string{"sh", "-c"}
)