pixegami / terminal-profile

This is my profile for UNIX (MacOS/Linux) terminals.
605 stars 174 forks source link

install_terminal.sh Oh my zsh link change #5

Open Swapnil-programmer7 opened 1 year ago

Swapnil-programmer7 commented 1 year ago

The link to install 'Oh my zsh' has been changed. Please refer to this site: https://ohmyz.sh/#install or use this line in the file sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

varshneydevansh commented 9 months ago

https://github.com/ohmyzsh/ohmyzsh

Manual Inspection

It's a good idea to inspect the install script from projects you don't yet know. You can do that by downloading the install script first, looking through it so everything looks normal, then running it:

wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh sh install.sh

If the above URL times out or otherwise fails, you may have to substitute the URL for https://install.ohmyz.sh/ to be able to get the script

This is what I did to my local script -

  GNU nano 6.2                   install_terminal.sh                            
# Fail on any command.
set -eux pipefail

# Install ZSH
sudo apt install -y git-core zsh curl
sh -c "$(curl -fsSL https://install.ohmyz.sh)"