From 0237d823979ddc180014f5f69d997183b1795cc6 Mon Sep 17 00:00:00 2001 From: jonathan Date: Fri, 17 Oct 2025 20:39:04 +0000 Subject: [PATCH] Update install.py --- install.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()