Python subprocess.Popen with a variable setting – Photoshop
A friend of mine wrote to me a Python script that launch Photoshop with wine, using subprocess.Popen. #!/usr/bin/env python3 import subprocess, re, sys, signal error_keywords = re.compile('^.*(Assertion|0x65372a0).*$') success_keywords = re.compile('^.*(list_manager_QueryInterface).*$') exited = False process = None successful_launch = False timeout…