Update install.py

This commit is contained in:
2025-10-17 20:39:04 +00:00
parent b170a30922
commit 0237d82397

View File

@@ -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()