How to run a script from home screen? #100
Unanswered
RobertVirag
asked this question in
Q&A
Replies: 2 comments
-
|
Have you tried disabling the "Auto-Return to Shortcuts" option in the Pythonista action? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
You could call ...
def stop(self):
import os,sys
if '--quit' in sys.argv: os._exit(0)
... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The documentation says to use the Shortcuts app, but when I do that, the execution gets stuck because after running, it needs to switch back to Shortcuts which is not an option for me. After running the script with UI elements i just want to close it.
Is there any other way to easily run a script (that uses a UI) from the Home Screen?
Could it be added as a Safari bookmark instead? There’s a link generator, but when I paste that link, Safari immediately opens it — so I can’t create a bookmark from it that could be placed on the Home Screen.
Any other ideas?
Beta Was this translation helpful? Give feedback.
All reactions