From 5ad02577fd949c58a028f8af7eb66b468b2c9fc4 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Wed, 11 Aug 2021 10:07:52 -0400 Subject: [PATCH] Update macos.zsh --- zsh/macos.zsh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/zsh/macos.zsh b/zsh/macos.zsh index 89bf9eb..dd546d7 100644 --- a/zsh/macos.zsh +++ b/zsh/macos.zsh @@ -58,17 +58,14 @@ update() { echo -e "${YELLOW}Updating pip packages...${NC}" pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U - echo -e "${YELLOW}Updating Composer packages...${NC}" - composer global update - - echo -e "${YELLOW}Updating Oh-My-ZSH...${NC}" - omz update - echo -e "${YELLOW}Updating MAS apps...${NC}" - mas upgrade + mas outdated echo -e "${YELLOW}Check for macOS system updates...${NC}" softwareupdate --list + + echo -e "${YELLOW}Updating Oh-My-ZSH...${NC}" + omz update } alias rehide="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder"