From 06dc0763ca4d49706ce5adbb74fb03097d44e60b Mon Sep 17 00:00:00 2001 From: Matthew Kosarek Date: Mon, 27 May 2024 18:49:44 -0400 Subject: refactor: remove lots of unused cruft and include an install --- install.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 install.py (limited to 'install.py') diff --git a/install.py b/install.py new file mode 100755 index 0000000..ab25e93 --- /dev/null +++ b/install.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python3 + +import shutil +from os.path import expanduser +import os + +project = os.path.dirname(os.path.realpath(__file__)) +home = expanduser("~") + +bashrc_project = os.path.join(project, "bashrc") +bashrc_home = os.path.join(home, ".bashrc") + +print("Copying bashrc...") +shutil.copyfile(bashrc_project, bashrc_home) -- cgit v1.2.1