We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea9528 commit fd7e861Copy full SHA for fd7e861
README.md
@@ -1,2 +1,18 @@
1
-# notifylinux
2
-a python package to send desktop notification in linux
+## notifylinux
+A python package to send desktop notification in linux
3
+
4
+**To install notifylinux run**
5
6
+```pip install notifylinux```
7
8
+**For instance**
9
10
+```
11
+from notifylinux.linuxnotifier import Notifier
12
13
+notify = Notifier(title="Hello Aashish", descriptions="Welcome to Linux",
14
+ iconpath="/home/aashishsharma/Documents/Python Journey/Python Projects/Desktop Notifier/icon/help-about.svg", timeout=5, urgency="normal")
15
+notify.send_notification()
16
17
18
0 commit comments