From acf3bd232f0fb8fd08871aeda650e708b45eb5b0 Mon Sep 17 00:00:00 2001 From: John Doty Date: Wed, 6 Mar 2024 20:54:05 +0000 Subject: [PATCH] Add earlyoom for responsiveness --- coder-setup.py | 1 + install.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/coder-setup.py b/coder-setup.py index 538550c..3f2b16f 100644 --- a/coder-setup.py +++ b/coder-setup.py @@ -33,6 +33,7 @@ def install_packages(): "unixodbc", "unixodbc-dev", "wget", + "earlyoom", ] run("sudo", "apt", "update") diff --git a/install.sh b/install.sh index 64822a1..c983369 100755 --- a/install.sh +++ b/install.sh @@ -10,5 +10,7 @@ cd $MY_PATH # Run the basic setup. python3 "./setup.py" +bash -i -l -c "nvm install 18" + # Run the coder setup. python3 "./coder-setup.py"