stash/vendor/github.com/go-toast/toast
kermieisinthehouse 0e514183a7
Desktop integration (#2073)
* 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>
2022-02-03 11:20:34 +11:00
..
.gitignore Desktop integration (#2073) 2022-02-03 11:20:34 +11:00
LICENSE Desktop integration (#2073) 2022-02-03 11:20:34 +11:00
readme.md Desktop integration (#2073) 2022-02-03 11:20:34 +11:00
screenshot-action-centre.png Desktop integration (#2073) 2022-02-03 11:20:34 +11:00
screenshot-cli.png Desktop integration (#2073) 2022-02-03 11:20:34 +11:00
screenshot-toast.png Desktop integration (#2073) 2022-02-03 11:20:34 +11:00
toast.go Desktop integration (#2073) 2022-02-03 11:20:34 +11:00

readme.md

Toast

A go package for Windows 10 toast notifications.

As seen in jacobmarshall/pokevision-cli.

CLI

As well as using go-toast within your Go projects, you can also utilise the CLI - for any of your projects.

Download 64bit or 32bit

C:\Users\Example\Downloads\toast64.exe \
  --app-id "Example App" \
  --title "Hello World" \
  --message "Lorem ipsum dolor sit amet, consectetur adipiscing elit." \
  --icon "C:\Users\Example\Pictures\icon.png" \
  --audio "default" --loop \
  --duration "long" \
  --activation-arg "https://google.com" \
  --action "Open maps" --action-arg "bingmaps:?q=sushi" \
  --action "Open browser" --action-arg "http://..."

CLI

Example

package main

import (
    "log"

    "gopkg.in/toast.v1"
)

func main() {
    notification := toast.Notification{
        AppID: "Example App",
        Title: "My notification",
        Message: "Some message about how important something is...",
        Icon: "go.png", // This file must exist (remove this line if it doesn't)
        Actions: []toast.Action{
            {"protocol", "I'm a button", ""},
            {"protocol", "Me too!", ""},
        },
    }
    err := notification.Push()
    if err != nil {
        log.Fatalln(err)
    }
}

Screenshots

Toast

Action centre