From 117a188659782e0b47db9402e50717d9cdca9f18 Mon Sep 17 00:00:00 2001 From: Maciej Krok <> Date: Mon, 26 Aug 2019 17:30:56 +0200 Subject: [PATCH] sync iphone/ipad/ipod in itunes --- scripts/syncInITunes.scpt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 scripts/syncInITunes.scpt diff --git a/scripts/syncInITunes.scpt b/scripts/syncInITunes.scpt new file mode 100644 index 0000000..b47d697 --- /dev/null +++ b/scripts/syncInITunes.scpt @@ -0,0 +1,6 @@ +tell application "iTunes" + repeat with s in sources + --display alert (name of s as text) & " " & (kind of s as text) + if (kind of s is iPod) then update s + end repeat +end tell