Skip to content

Instantly share code, notes, and snippets.

@TB-O-gh
Created July 16, 2019 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TB-O-gh/8735e765daee8367e308d2acb67393f2 to your computer and use it in GitHub Desktop.
Save TB-O-gh/8735e765daee8367e308d2acb67393f2 to your computer and use it in GitHub Desktop.
Gnome3環境でアラームをセットする。
#!/usr/bin/python3
from gi.repository import Notify
from time import sleep
timer = 5
title = "アラーム"
message = "アラーム内容"
sleep(timer)
Notify.init (title)
timer_messgage=Notify.Notification.new (title,
message,
"dialog-information")
timer_messgage.show ()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment