Skip to content

Instantly share code, notes, and snippets.

@WhiteCat6142
Created January 23, 2023 07:03
Show Gist options
  • Save WhiteCat6142/5da30427c002c16f20f0813dc8e3fa15 to your computer and use it in GitHub Desktop.
Save WhiteCat6142/5da30427c002c16f20f0813dc8e3fa15 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import gi
gi.require_version('Notify', '0.7')
from gi.repository import Notify
Notify.init ("Hello world")
Hello = Notify.Notification.new ("Hello world","This is an example notification.","dialog-information")
Hello.show ()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment