Init repo
This commit is contained in:
9
install.py
Normal file
9
install.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import update, shutil, json
|
||||
|
||||
if __name__ == "__main__":
|
||||
config = json.loads(update.read_file("config.json"))
|
||||
away_subl_user = config["sublime_text"] + "/Packages/User"
|
||||
here_subl_user = "sublime_text"
|
||||
|
||||
for here in os.listdir(here_subl_user):
|
||||
shutil.copyfile(here_subl_user + "/" + here, away_subl_user + "/" + here)
|
||||
Reference in New Issue
Block a user