Merge branch 'master' of github.com:sneak/osximage

This commit is contained in:
Jeffrey Paul 2019-11-26 20:29:28 -08:00
commit 9e656b775f
9 changed files with 37 additions and 39 deletions

View File

@ -0,0 +1 @@
export BASH_SILENCE_DEPRECATION_WARNING=1

View File

@ -0,0 +1,14 @@
export DO_NOT_TRACK=1
# the rest
export HOMEBREW_NO_ANALYTICS=1
export GATSBY_TELEMETRY_DISABLED=1
export STNOUPGRADE=1
export DOTNET_CLI_TELEMETRY_OPTOUT=1
export SAM_CLI_TELEMETRY=0
export AZURE_CORE_COLLECT_TELEMETRY=0
if command -v gcloud >/dev/null 2>&1 >/dev/null ; then
gcloud config set disable_usage_reporting true >/dev/null 2>&1
fi

View File

@ -1 +0,0 @@
export HOMEBREW_NO_ANALYTICS=1

View File

@ -1,4 +1,6 @@
# adds homebrew python packages dir to python paths
if [[ -d "$HOME/Library/Python/2.7/lib/python/site-packages/" ]]; then
echo "import site; site.addsitedir(\"$HOME/Library/Homebrew/lib/python2.7/site-packages\")" >> \
$HOME/Library/Python/2.7/lib/python/site-packages/homebrew.pth
fi

View File

@ -13,30 +13,26 @@ brew tap caskroom/cask
# no google-drive-file-stream because it requires admin privs and installs to /Applications systemwide
CASKS="
1password
1password-cli
ableton-live-suite
alacritty
anki
atom
dashlane
bitwarden
deluge
disk-inventory-x
expandrive
google-chrome
google-cloud-sdk
handbrake
iterm2
keepassx
keybase
lastpass
little-snitch
minikube
openscad
signal
sketch
slack
spotify
sublime-text
syncthing-app
syncthing
tor-browser
vcv-rack
vlc
@ -48,7 +44,7 @@ for CASK in $CASKS ; do
brew cask install $CASK
done
brew tap caskroom/fonts
brew tap homebrew/cask-fonts
FONTS="
font-anonymice-powerline

View File

@ -73,8 +73,9 @@ HOMEBREW_PKGS="
watch
wget
whatmask
yarn
"
for PKG in $HOMEBREW_PKGS ; do
brew install $PKG
brew install --build-from-source $PKG
done

View File

@ -1,23 +0,0 @@
#!/bin/bash
# set up paths and whatnot
source $HOME/.profile
NPM_PKGS="
coffee-script
yarn
"
for PKG in $NPM_PKGS ; do
# -g is okay because "global" prefix is where homebrew
# installed npm, i.e. in ~/Library/Homebrew, not actually systemwide
npm install -g $PKG
done
YARN_PKGS="
now
"
for PKG in $YARN_PKGS ; do
yarn global add $PKG
done

View File

@ -0,0 +1,13 @@
#!/bin/bash
# set up paths and whatnot
source $HOME/.profile
YARN_PKGS="
now
prettier
"
for PKG in $YARN_PKGS ; do
yarn global add $PKG
done

View File

@ -1,5 +0,0 @@
#!/bin/bash
# setup google drive as synceddir in ~/.paths
if [[ ! -e ~/.paths/synceddir ]]; then
ln -s ~/Google\ Drive\ File\ Stream/My\ Drive ~/.paths/synceddir
fi