|
|
|
|
|
by lri
5021 days ago
|
|
If access for assistive devices has been enabled, you can use UI scripting to click the allow buttons: security find-generic-password -l AppleID -w & sleep 1; osascript -e 'tell app "System Events" to click button 2 of group 1 of window 1 of process "SecurityAgent"' You could also use something like https://github.com/smerrill/os-x-click even if access for assistive devices wasn't enabled. security find-generic-password -l AppleID -w &
sleep 1
width=$(osascript -e 'tell app "Finder"
item 3 of (get bounds of window of desktop)
end')
x=$(($width / 2 + 155))
for y in $(seq 300 20 700); do
~/bin/click -x $x -y $y
sleep 0.2
done
|
|