I have done jb 4.3.1 untethered and also enabled the gesture mode

after some figuring out and trial n error below is the how to
1. Make sure u have JB ur ipad
2. Install openSSH on ur ipad
3. Install WinSCP on ur windows pc
4. Install plist editor for Windows
5. Connect to ur ipad via WinSCP
6. Navigate to
Root > var > mobile > Library > Preferences > com.apple.springboard.plist7. Copy the file to ur pc via WinSCP
8. Edit with plist Editor
9. Add
CODE
<key>SBUseSystemGestures</key>
<true/>
in the middle of the code lines
10. save the file
11. Rename the old file for backup
ie: old.com.apple.springboard.plist via WinSCP
12. Transfer the modded com.apple.springboard.plist to ur ipad via WinSCP
13. Navigate to
Root > Applications > Preferences.app > General.plist14. Copy the file to ur pc via WinSCP
15. Edit with plist Editor
16. Replace the following block of code with the new code
oldCODE
<dict>
<key>cell</key>
<string>PSGroupCell</string>
<key>footerCellClass</key>
<string>MultitaskingGestureExplanationView</string>
<key>id</key>
<string>Mutltitasking_Gesture_Group</string>
<key>requiredCapabilities</key>
<array>
<string>multitasking-gestures</string>
</array>
</dict>
<dict>
<key>cell</key>
<string>PSSwitchCell</string>
<key>default</key>
<true/>
<key>defaults</key>
<string>com.apple.springboard</string>
<key>id</key>
<string>Mutltitasking_Gesture_Switch</string>
<key>key</key>
<string>SBUseSystemGestures</string>
<key>label</key>
<string>Multitasking_Gestures</string>
<key>requiredCapabilities</key>
<array>
<string>multitasking-gestures</string>
</array>
</dict>
NEWCODE
<dict>
<key>cell</key>
<string>PSGroupCell</string>
<key>footerCellClass</key>
<string>MultitaskingGestureExplanationView</string>
<key>requiredCapabilities</key>
<array>
<string>multitasking-gestures</string>
</array>
</dict>
<dict>
<key>cell</key>
<string>PSSwitchCell</string>
<key>default</key>
<true/>
<key>defaults</key>
<string>com.apple.springboard</string>
<key>key</key>
<string>SBUseSystemGestures</string>
<key>label</key>
<string>Multitasking Gestures</string>
<key>requiredCapabilities</key>
<array>
<string>multitasking-gestures</string>
</array>
</dict>
17. save the file
18. Rename the old file for backup
old.General.plist via WinSCP
19. Transfer the modded
General.plist to ur ipad via WinSCP
20. Navigate to
Root > System > Library > CoreServices > SpringBoard.app > K48AP.plist21. Copy the file to ur pc
22. Edit with plist Editor
23. Make sure this code is there
CODE
<key>multitasking-gestures</key>
<true/>
24. save the file
25. Rename the old file for backup
old.K48AP.plist via WinSCP
26. Transfer the modded
K48AP.plist to ur ipad via WinSCP
27.close everything
28. turn off ur ipad
29 turn it on again
30. Go to Settings --> General
U should see this option
This post has been edited by cruzzmz: Apr 10 2011, 10:12 AM