From ecc63013c15f2459f7804e11e8408a8b13ecdd28 Mon Sep 17 00:00:00 2001 From: Lucas Noki Date: Sun, 2 Aug 2020 03:51:22 +0200 Subject: [PATCH] Remove xrdp from basictools add git and vim --- modules/install/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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.")