17 lines
487 B
Plaintext
17 lines
487 B
Plaintext
<!--
|
|
1. save to ~/Library/LaunchAgents
|
|
2. load the plist: launchctl load ~/Library/LaunchAgents/fix_rotate.plist
|
|
-->
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>fix rotate</string>
|
|
<key>RunAtLoad</key>
|
|
<true />
|
|
<key>Program</key>
|
|
<string>/Users/j3g/scripts/fix_rotate.sh</string>
|
|
</dict>
|
|
</plist>
|