J'ai le fichier plist suivant dans mon dossier User/Library/LaunchAgents. Il appuie sur la touche "g" toutes les 60 secondes.
Ma question est la suivante : comment puis-je changer cela pour appuyer sur la touche "g" toutes les 5 secondes ?
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<key>Program</key>
<string>/usr/bin/osascript</string>
<key>ProgramArguments</key>
<array>
<string>osascript</string>
<string>-e</string>
<string>tell application "System Events" to keystroke "g"</string>
</array>
<key>ServiceDescription</key>
<string>Auto Keypress</string>
<key>StartCalendarInterval</key>
<dict>
<key>Second</key>
<integer>0</integer>
</dict>
</dict>
</plist>
0 votes
Voir ma réponse ci-dessous. Mais pourquoi voulez-vous une telle chose ?