先看一張效果圖:
在電腦選單中找到「指令碼編輯器」,並在裡面填寫如下內容
#可以指定標題和聲音
display notification "???" with title "該喝水了!" sound name "morse"
建立乙個「com.herry.cron.drink.plist」檔案,放到/users/herry/library/launchagents/com.herry.cron.drink.plist(herry 是當前使用者)
<?xml version="1.0" encoding="utf-8"?>
label
com.herry.cron.drink
programarguments
osascript
startinterval
1800
standardinpath
standardoutpath
standarderrorpath
載入plist檔案,使用launchctl命令載入,可以使用help檢視launchctl的相關命令
launchctl load com.herry.cron.drink.plist
使用list命令檢視任務是否載入
launchctl list | grep <>
如下內容說明載入成功
~/library/launchagents launchctl list |grep com.herry
- 0 com.herry.cron.drink
Outlook中自定義新郵件提醒
由於我平時工作的時候總是在遠端桌面或者虛機裡邊,所以經常有新郵件或者reminder沒有能及時察覺,所以便寫了這麼乙個vba,在有新郵件或者reminder的時候使用主機板小喇叭來點動靜。關於outlook的程式設計可以參考這篇文章 option explicit private declare f...
Outlook中自定義新郵件提醒
由於我平時工作的時候總是在遠端桌面或者虛機裡邊,所以經常有新郵件或者reminder沒有能及時察覺,所以便寫了這麼乙個vba,在有新郵件或者reminder的時候使用主機板小喇叭來點動靜。關於outlook的程式設計可以參考這篇文章 option explicit private declare f...
Android定時推送通知 提醒功能的實現
1.建立乙個alertservice.class,繼承service。public class alertservice extends service public static final int notification id 1 override public void oncreate p...