-
-
Save mathieulegrand/762e6147471e270e8f56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Automate loading of F-Script Anywhere into any app. | |
By Daniel Jalkut - @danielpunkass - http://indiestack.com/ | |
To set up: | |
0. Make sure you have FScript.framework installed in /Library/Frameworks (http://www.fscript.org) | |
1. Copy this script to ~/.lldb/fsa.py | |
2. Add the following to your ~/.lldbinit file: | |
command script import ~/.lldb/fsa.py | |
To use: | |
1. Attach to a process e.g. by "lldb -n TextEdit" | |
2. Type "fsa" to load an initialize F-Script Anywhere in the context of the app. | |
3. Type "c" to continue execution of the target app. | |
""" | |
def loadFSA(debugger, args, result, internal_dict): | |
debugger.HandleCommand('expr (void) [[NSBundle bundleWithPath:@"/Library/Frameworks/FScript.framework"] load]'); | |
debugger.HandleCommand('expr (void)[FScriptMenuItem insertInMainMenu]'); | |
def __lldb_init_module(debugger, dict): | |
debugger.HandleCommand('command script add -f fsa.loadFSA fsa'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment