Created
July 16, 2019 08:35
-
-
Save TB-O-gh/8735e765daee8367e308d2acb67393f2 to your computer and use it in GitHub Desktop.
Gnome3環境でアラームをセットする。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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