Skip to content

Commit

Permalink
Merge pull request #5 from amaltson/start-strap-move
Browse files Browse the repository at this point in the history
Start strap move
  • Loading branch information
amaltson committed May 28, 2020
2 parents 7dcb462 + 5457f99 commit ed62332
Show file tree
Hide file tree
Showing 17 changed files with 121 additions and 217 deletions.
3 changes: 0 additions & 3 deletions Berksfile

This file was deleted.

7 changes: 0 additions & 7 deletions Berksfile.lock

This file was deleted.

3 changes: 0 additions & 3 deletions Gemfile

This file was deleted.

26 changes: 0 additions & 26 deletions Gemfile.lock

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

37 changes: 0 additions & 37 deletions Vagrantfile

This file was deleted.

Empty file removed attributes/default.rb
Empty file.
96 changes: 0 additions & 96 deletions chefignore

This file was deleted.

95 changes: 95 additions & 0 deletions dotfiles/Brewfile
@@ -0,0 +1,95 @@
cask_args appdir: "/Applications"

# AWS Tooling
brew "awscli"

# CLI Productivity Tools
brew "autojump"
brew "cowsay"
brew "fzf"
brew "graphviz"
brew "htop"
brew "hub"
brew "jid"
brew "jq"
brew "mas"
brew "plantuml"
brew "powerline-go"
brew "pstree"
brew "pv"
brew "reattach-to-user-namespace"
brew "restic"
brew "ssh-copy-id"
brew "the_silver_searcher"
brew "tmux"
brew "youtube-dl"
brew "zsh"

# Dev Tools
brew "dos2unix"
brew "git"
brew "gnupg"
brew "kubernetes-cli"
brew "neovim"
brew "tig"
brew "vim"

# Admin Tools
brew "gnu-sed"
brew "telnet"
brew "tree"
brew "watch"
brew "webp"
brew "wget"
brew "wireshark"
brew "xz"

# Programming Languages
brew "asdf"

# Dev Libraries
brew "libxml2"
brew "libyaml"

# --------------
# Homebrew Casks
# --------------

# Applications
cask "google-chrome"
cask "firefox"
cask "licecap"
cask "vlc"

# Dev Tools
cask "docker"
cask "iterm2"
cask "macvim"
cask "vagrant"
cask "visual-studio-code"

# Productivity Tools
cask "alfred"
cask "anybar"
cask "notion"
cask "postman"
cask "spectacle"
cask "tomighty"

# Fonts
tap "homebrew/cask-fonts"
cask "font-fira-code"
cask "font-source-code-pro"

# ------------------
# Mac Store Installs
# ------------------
mas '1Password 7 - Password Manager', id: 1333542190
mas 'Blackmagic Disk Speed Test', id: 425264550
mas 'ColorSnapper', id: 418176775
mas 'DaisyDisk', id: 411643860
mas 'Day One', id: 1055511498
mas 'Deckset', id: 847496013
mas 'Keynote', id: 409183694
mas 'Tweetbot 2 For Twitter', id: 557168941
mas 'Twitter', id: 409789998
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 0 additions & 8 deletions metadata.rb

This file was deleted.

16 changes: 0 additions & 16 deletions recipes/default.rb

This file was deleted.

26 changes: 26 additions & 0 deletions script/setup
@@ -0,0 +1,26 @@
#!/bin/sh
# Install all dotfiles into the home directory

DOTFILESDIRREL=$(dirname $0)
cd $DOTFILESDIRREL/..
DOTFILESDIR=$(pwd -P)
VSCODE="$HOME/Library/Application Support/Code/User"

pushd dotfiles
for DOTFILE in *; do
HOMEFILE="$HOME/.$DOTFILE"
[ -d $DOTFILE ] && DOTFILE="$DOTFILE/"
DIRFILE="$DOTFILESDIR/$DOTFILE"

echo $DOTFILE | grep -q '\.sh' &&
HOMEFILE="$HOME/.$(echo $DOTFILE | sed -e 's/\.sh//')"

if [ -L "$HOMEFILE" ] && ! [ -d $DOTFILE ]
then
ln -sfv "$DIRFILE" "$HOMEFILE"
else
rm -rv "$HOMEFILE"
ln -sv "$DIRFILE" "$HOMEFILE"
fi
done
popd

0 comments on commit ed62332

Please sign in to comment.