Can someone help me how do I kill springboard in pythonista ? I have jailbreak and want this feature :/
Forum Archive
Killall backboardd in pythonista
zSaaiq
Feb 17, 2017 - 17:54
scj643
Feb 17, 2017 - 18:23
https://github.com/scj643/objc_tools/blob/master/objc_tools/apps.py and use openWithBundleID('com.apple.webapp') though that will result in the device going into substrate safe mode.
dgelessus
Feb 18, 2017 - 00:03
import subprocess
subprocess.check_call(["killall", "backboardd"])
Assuming that is the command you want to execute, and assuming that the jailbreak allows Pythonista to do that.
zSaaiq
Feb 18, 2017 - 13:11
Operation not permitted :/ so pythonista doesn't allow me that :/
zSaaiq
Feb 18, 2017 - 13:16
@scj643 "no module named objc_tools" :/
ccc
Feb 18, 2017 - 15:16
@zSaaiq ... You could try changing line 5 from:
from objc_tools.objc_json import objc_to_dict
# to
from objc_json import objc_to_dict
In general, I think that __init__.py files are needed in the directories of objc_tools as described in: https://docs.python.org/3/tutorial/modules.html#packages and http://mikegrouchy.com/blog/2012/05/be-pythonic-__init__py.html