Skip to content

chapainaashish/notifylinux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

notifylinux

A Python package to send desktop notification in linux

Project link

https://pypi.org/project/notifylinux

Install notifylinux

pip install notifylinux

For instance

from notifylinux.linuxnotifier import Notifier

notify = Notifier(title="Hello World", descriptions="Welcome to Linux",
                  iconpath="icon/hello.svg", timeout=5, urgency="normal")
notify.send_notification()