Add wget to basic_tools

This commit is contained in:
Marcel Schwarz 2020-03-21 04:11:14 +01:00
parent 657b864202
commit d53ad4b684

View File

@ -6,7 +6,8 @@ class ToolsInstaller:
def basic_tools(self):
"""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", shell=True)
subprocess.run("apt-get install -y bleachbit nano xrdp htop bash-completion dialog powertop tree wget",
shell=True)
print("Script ran to completion.")
def hard_drive_tools(self):