Native desktop notifications for Atom. This package is a fork of atom-notifier by Benjamin Dean.
Differences:
- written in TypeScript
- service provider for third-party packages
- icon themes
Install notify from Atom install view or use the command-line equivalent:
$ apm install notify
Change to your Atom packages directory:
Windows
# Powershell
$ cd $Env:USERPROFILE\.atom\packages:: Command Prompt
$ cd %USERPROFILE%\.atom\packagesLinux & macOS
$ cd ~/.atom/packages/Clone the repository as notify:
$ git clone https://github.com/idleberg/atom-notify notifyInstall dependencies:
cd notify && npm installBuild source:
$ npm run buildThis package provides the service to notify users. To consume it, add the following to your package.json:
{
"consumedServices": {
"notify": {
"versions": {
"0.1.0": "consumeNotify"
}
}
}
}This work is licensed under the MIT License