-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jesse Olmer
committed
Sep 9, 2019
1 parent
e5bd81e
commit 7f4500d
Showing
2 changed files
with
54 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
if [ $SUDO_USER ]; then | ||
echo "The script should not be run in an escalated (sudo) manner." >&2 | ||
exit 1 | ||
fi | ||
|
||
function installohmyzsh { | ||
if [ -d ~/.oh-my-zsh ]; then | ||
echo "oh-my-zsh already installed. Skipping" | ||
return 0 | ||
fi | ||
echo "Installing oh-my-zsh" | ||
$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -) | ||
} | ||
|
||
brew cask install clipy | ||
brew cask install iterm2 | ||
brew cask install spotify | ||
brew install kubectx | ||
brew install kubernetes-cli | ||
brew install docker | ||
brew install zsh | ||
installohmyzsh |