/nim-toast

A nim package for Windows 10 toast notifications.

Primary LanguageNimMIT LicenseMIT

Toast

A nim package for Windows 10 toast notifications.

demo

Contents

Installation

nimble install toast

Usage

import toast

when isMainModule:
  let
    iconPath = "absolute\\path\\to\\icon"
    n = newNotification("NimToast", iconPath)
  n.show("Task complete", "Documentation has been successfully generated")

Warning: does not work if the path to the icon does not exist.