Skip to content

Commit

Permalink
Capture install dependnecies command.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knucklessg1 committed May 12, 2023
1 parent 4ca1c0e commit 039acee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion systems_manager/systems_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 039acee

Please sign in to comment.