Remove xrdp from basictools add git and vim

This commit is contained in:
Lucas Noki 2020-08-02 03:51:22 +02:00
parent 94ff8d2ce2
commit ecc63013c1

View File

@ -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.")