From 039aceea134a5d827ec92b38f721ede5ce151043 Mon Sep 17 00:00:00 2001 From: knucklessg1 Date: Fri, 12 May 2023 10:28:34 -0500 Subject: [PATCH] Capture install dependnecies command. --- systems_manager/systems_manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/systems_manager/systems_manager.py b/systems_manager/systems_manager.py index 4229ded..7c13ce4 100644 --- a/systems_manager/systems_manager.py +++ b/systems_manager/systems_manager.py @@ -171,7 +171,8 @@ def font(self): def theme(self): if self.operating_system == "Ubuntu": - self.run_command(command=['apt', 'install', '-y', 'fontconfig', 'unzip']) + install_dependencies_command = ['apt', 'install', '-y', 'fontconfig', 'unzip'] + self.run_command(command=install_dependencies_command) oh_my_posh_file = '/usr/local/bin/oh-my-posh' url = "https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64" r = requests.get(url)