mirror of
https://github.com/stashapp/stash.git
synced 2025-12-16 13:25:21 +01:00
* Open stash in system tray on Windows/MacOS * Add desktop notifications * MacOS Bundling * Add binary icon Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
40 lines
859 B
Go
40 lines
859 B
Go
//go:build darwin
|
|
// +build darwin
|
|
|
|
package desktop
|
|
|
|
import (
|
|
"os/exec"
|
|
|
|
"github.com/kermieisinthehouse/gosx-notifier"
|
|
"github.com/stashapp/stash/pkg/logger"
|
|
)
|
|
|
|
func isService() bool {
|
|
// MacOS /does/ support services, using launchd, but there is no straightforward way to check if it was used.
|
|
return false
|
|
}
|
|
|
|
func isServerDockerized() bool {
|
|
return false
|
|
}
|
|
|
|
func hideExecShell(cmd *exec.Cmd) {
|
|
|
|
}
|
|
|
|
func sendNotification(notificationTitle string, notificationText string) {
|
|
notification := gosxnotifier.NewNotification(notificationText)
|
|
notification.Title = notificationTitle
|
|
notification.AppIcon = getIconPath()
|
|
notification.Link = getServerURL("")
|
|
err := notification.Push()
|
|
|
|
if err != nil {
|
|
logger.Errorf("Could not send MacOS notification: %s", err.Error())
|
|
}
|
|
}
|
|
|
|
func revealInFileManager(path string) {
|
|
exec.Command(`open`, `-R`, path)
|
|
}
|