add hushlogin
This commit is contained in:
6
Brewfile
6
Brewfile
@@ -1,4 +1,3 @@
|
|||||||
tap "adoptopenjdk/openjdk"
|
|
||||||
tap "homebrew/bundle"
|
tap "homebrew/bundle"
|
||||||
tap "homebrew/cask"
|
tap "homebrew/cask"
|
||||||
tap "homebrew/cask-drivers"
|
tap "homebrew/cask-drivers"
|
||||||
@@ -38,7 +37,7 @@ brew "imagemagick"
|
|||||||
brew "jq"
|
brew "jq"
|
||||||
brew "ldid"
|
brew "ldid"
|
||||||
brew "libusbmuxd"
|
brew "libusbmuxd"
|
||||||
brew "libimobiledevice", args: ["HEAD"]
|
brew "libimobiledevice"
|
||||||
brew "llvm"
|
brew "llvm"
|
||||||
brew "lolcat"
|
brew "lolcat"
|
||||||
brew "ruby"
|
brew "ruby"
|
||||||
@@ -63,7 +62,7 @@ brew "zsh-completions"
|
|||||||
brew "zsh-history-substring-search"
|
brew "zsh-history-substring-search"
|
||||||
brew "zsh-syntax-highlighting"
|
brew "zsh-syntax-highlighting"
|
||||||
brew "zzz"
|
brew "zzz"
|
||||||
cask "adoptopenjdk8"
|
cask "openjdk"
|
||||||
cask "appcleaner"
|
cask "appcleaner"
|
||||||
cask "burp-suite"
|
cask "burp-suite"
|
||||||
cask "chromedriver"
|
cask "chromedriver"
|
||||||
@@ -92,7 +91,6 @@ cask "vmware-fusion"
|
|||||||
cask "wireshark"
|
cask "wireshark"
|
||||||
cask "xquartz"
|
cask "xquartz"
|
||||||
cask "zoom"
|
cask "zoom"
|
||||||
mas "1Blocker", id: 1107421413
|
|
||||||
mas "Dark Reader for Safari", id: 1438243180
|
mas "Dark Reader for Safari", id: 1438243180
|
||||||
mas "Keynote", id: 409183694
|
mas "Keynote", id: 409183694
|
||||||
mas "Microsoft Excel", id: 462058435
|
mas "Microsoft Excel", id: 462058435
|
||||||
|
|||||||
8
setup.sh
8
setup.sh
@@ -2,10 +2,11 @@
|
|||||||
|
|
||||||
OSTYPE=$(uname -s)
|
OSTYPE=$(uname -s)
|
||||||
|
|
||||||
# get package manager up to date
|
# assume were on ubuntu because thats reasonable
|
||||||
|
# and get package manager up to date
|
||||||
if [ "$OSTYPE" = "Linux" ]; then
|
if [ "$OSTYPE" = "Linux" ]; then
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install coreutils zsh net-tools jq -y
|
sudo apt install coreutils zsh net-tools jq python3-pip -y
|
||||||
sudo apt upgrade -y
|
sudo apt upgrade -y
|
||||||
elif [ "$OSTYPE" = "Darwin" ]; then
|
elif [ "$OSTYPE" = "Darwin" ]; then
|
||||||
echo "Install Homebrew? [y/n]"
|
echo "Install Homebrew? [y/n]"
|
||||||
@@ -16,6 +17,9 @@ elif [ "$OSTYPE" = "Darwin" ]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# silence login message
|
||||||
|
touch .hushlogin
|
||||||
|
|
||||||
# get ohmyzsh setup
|
# get ohmyzsh setup
|
||||||
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh/
|
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user