上班地方有个付费计时,想在倒计时结束前在电脑弹个提醒,手动结束计费,趴下来API了。接下来就是如何弹窗了。
本来想用macOS自带的 UNUserNotificationCenter
通过 PyObjC 撸个弹窗,遇到两个问题:
/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC
NSUserNotification
,状态为 macOS 10.8–11.0 Deprecatedcodesign -dv --verbose=4 /usr/bin/python2.7
只有官方的python2.7签名了 anaconda/miniconda 的都没签名。算了。还是直接 AppleScript 走起
osascript -e 'display notification "还有1分钟到达时辰" with title "准时付费" sound name "Frog"'
想在这个提示里加一个 snooze 1分钟功能,但是好像无法支持。罢了。2333