GÜNCELLEME:
MacOS 10.9 (Mavericks) ve sonraki sürümleriyle, düz AppleScript kullanarak bildirim gönderebilirsiniz:
theTitle <- "A Title"
theMsg <- "A message here"
cmd <- paste("osascript -e ", "'display notification ", '"', theMsg, '"', ' with title ', '"', theTitle, '"', "'", sep='')
system(cmd)
Bu terminal-notifier
, aşağıda belirtilen kurulum ihtiyacını ortadan kaldırır .
-
Elimdeki terminal bilgilendiricisini komut satırından masaüstü bildirimlerini almak için benim Mac yüklü. Daha sonra şu şekilde bir system()
komut çağrısını tamamlayabilirsiniz (yolu açıkça değiştirin):
notify <- function(msgString='Message from R', titleString='Message from R', speakIt=FALSE) {
cmd <- paste('~/terminal-notifier/terminal-notifier.app/Contents/MacOS/terminal-notifier -message ', '"', msgString, '" -title "', titleString, '"', sep='')
system(cmd)
if (speakIt) {
system(paste('say', msgString))
}
}
İşlevi şu şekilde çağırabilirsiniz
notify("R is done", "Message from R", speakIt=TRUE)
böyle bir mesaj almak için:
Güncelleme: @ VLC'nin say
komutu dahil.