Skip to content
/ gnotify Public

Common Lisp system to send desktop notifications

License

Notifications You must be signed in to change notification settings

Junker/gnotify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GNotify

System to send desktop notifications.

Requirements

Installation

This system can be installed from UltraLisp like this:

(ql-dist:install-dist "http://dist.ultralisp.org/"
                      :prompt nil)
(ql:quickload "gnotify")

Usage

(gnotify:init "test app")
(defvar *n* (gnotify:make "summary text" "body text"))
(gnotify:set-urgency *n* :critical)
(gnotify:set-timeout *n* 600000)
(gnotify:show *n*)
(gnotify:hide *n*)