macOS系统定时通知
1. 前言
“Wisdom is the power to put our time and our knowledge to the proper use” ~ Thomas J. Watson
通过macOS系统的桌面右上角的通知📢,提醒一些信息,比如:定时提醒吃饭🍚,定时下班关机💼和定时打开页面。
这些实现起来,使用两个工具🔧:crontab
和 osascript
。
本网站已经写了两篇关于 crontab
的使用:
2. 实现 macOS 系统定时通知
- 打开 crontab 编辑:
crontab -e
- 加入以下命令:
# 工作日(周一、二、三、四和五)下午五点半,提醒下班,6.Dec.2023 Deng
30 17 * * 1,2,3,4,5 osascript -e 'display notification "定时下班是为了更好地上班💼!" with title "下班" subtitle "准时下班很重要" sound name "Tink"'
说明: Tink
为系统内置的声音🔊,可以选择其他系统内置的声音,见 /System/Library/Sounds
文件夹。
- 打开
System Setting
—Notifications
—Script Editor
,打开通知📢并进行相关设置。