diff --git a/modules/install/__init__.py b/modules/install/__init__.py index 344a72b..ce0c49e 100644 --- a/modules/install/__init__.py +++ b/modules/install/__init__.py @@ -4,8 +4,10 @@ import subprocess def basic_tools(): """Install the most basic tools!""" print("Try to install basic Command-line tools") - subprocess.run("apt-get install -y bleachbit nano xrdp htop bash-completion dialog powertop tree wget", - shell=True) + subprocess.run( + "apt update && apt-get install -y bleachbit nano htop bash-completion dialog powertop tree wget vim git", + shell=True + ) print("Script ran to completion.")