diff --git a/install.py b/install.py index 82bc621..e8b3294 100644 --- a/install.py +++ b/install.py @@ -2,11 +2,12 @@ import os import platform linux_packages = [ + 'git', 'zsh' ] linux_after_command = { - 'zsh': 'sudo chsh -s $(which zsh) $(whoami)' + 'zsh': 'sudo chsh -s $(which zsh) $(whoami) && sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"' } os_type = platform.uname().system.lower()