Python + Windows:如何编写一个弹出提醒计算机睡眠/关机的脚本?

时间:2012-08-18 22:24:21

标签: python windows

我想写一个Python脚本,它会提醒我在睡眠/关机时吃药。 (只是一个简单的弹出消息)。我该从哪里开始?

(我正在寻找一个非常简单的实现,如果它存在的话。我不想为此付出太多努力)

1 个答案:

答案 0 :(得分:3)

这将告诉您如何检测事件
Linux: - Detect user logout / shutdown in Python / GTK under Linux - SIGTERM/HUP not received Windows: - Python - Windows Shutdown Events

这会弹出通知

from tkinter import *
root = Tk()
w = Label(root, text="Take your Medicine \n :):)...Get Well Soon...")
w.pack()
root.mainloop()