├── .gitignore ├── LICENSE ├── README.md ├── TUTORIAL.md ├── binding.gyp ├── demo └── demo.js ├── package.json ├── screenshot.png ├── src └── node_gtknotify.cpp └── wscript /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .lock-wscript 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/README.md -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/binding.gyp -------------------------------------------------------------------------------- /demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/demo/demo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/node_gtknotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/src/node_gtknotify.cpp -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olalonde/node-notify/HEAD/wscript --------------------------------------------------------------------------------