diff --git a/wscript b/wscript index 5557454..fb98ef9 100644 --- a/wscript +++ b/wscript @@ -3,9 +3,11 @@ import json, os, shutil DIR = os.getcwd() + def _get_json(path): return json.load(open(DIR + path)) + def update_and_upgrade(): os.system('apt-get update -y') os.system('apt-get upgrade -y') @@ -45,6 +47,10 @@ def install_atom_packages(): os.system("apm install {}".format(packages)) +def export_atom_config(): + os.system("cp -R atom/* ~/.atom/") + + def install_configs(): shutil.copyfile(DIR + "/config/terminator.conf", "~/.config/terminator/config")