From 078d46fe39680e68470df5408b277f9fb2452054 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Fri, 27 Dec 2019 08:53:34 -0500 Subject: [PATCH 1/4] Ignore more config files --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 5fa6649..fb9df8f 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,11 @@ link/nix/config/grv/ link/nix/config/gtk-2.0/ link/nix/config/htop/ link/nix/config/hub +link/nix/config/Microsoft\\VisualStudio Services/ link/nix/config/NuGet/nuget.config link/nix/config/powershell/powershellget/ +link/nix/config/puppet/ link/nix/config/QtProject/ link/nix/config/tmuxinator/ +link/nix/config/wireshark/ + From 0edde704c3dfa0be0322943b9ed0f30994869d73 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Fri, 27 Dec 2019 08:55:45 -0500 Subject: [PATCH 2/4] Update method of opening apps on macOS --- link/nix/zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/link/nix/zshrc b/link/nix/zshrc index 02ee6c6..c310ab3 100644 --- a/link/nix/zshrc +++ b/link/nix/zshrc @@ -86,9 +86,9 @@ gpg-connect-agent updatestartuptty /bye >/dev/null alias biv='bundle install --path=vendor/bundle' alias gbc='git branch --merged | command grep -vE "^(\*|\s*(master|develop|production)\s*$)" | command xargs -n 1 git branch -d' alias sal='ssh-add -L' -alias ogk='/Applications/GitKraken.app/Contents/MacOS/GitKraken &' +alias ogk='open -a GitKraken' alias sz='source ~/.zshrc' -alias st='/Applications/SourceTree.app/Contents/MacOS/SourceTree &' +alias st='open -a SourceTree' alias ykey='pkill gpg-agent && source ~/.zshrc; ssh-add -L' # this makes grv from homebrew work From e5dc9ed41b1ff1578120b472da5228a9e34b4ed2 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Fri, 27 Dec 2019 08:56:01 -0500 Subject: [PATCH 3/4] Add flushdns alias --- link/nix/zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/link/nix/zshrc b/link/nix/zshrc index c310ab3..bf351af 100644 --- a/link/nix/zshrc +++ b/link/nix/zshrc @@ -123,6 +123,8 @@ export PATH=$PATH:~/.nexustools if [[ `uname` == 'Darwin' ]]; then export PATH=$PATH:/usr/local/sbin + alias flushdns='sudo killall -HUP mDNSResponder' + # Araxis needs to come first so that its tools don't get stomped # by ones Homebrew installs to /usr/local/bin. In particular, compare # from ImageMagick breaks using git difftool. From 2af378c05c7fcb58fae19d3fb123a5d30974d5f2 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Fri, 27 Dec 2019 08:56:28 -0500 Subject: [PATCH 4/4] Add user config for ssh'ing to beanbag --- link/ssh/config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/link/ssh/config b/link/ssh/config index 3ec9827..26f2795 100644 --- a/link/ssh/config +++ b/link/ssh/config @@ -2,3 +2,5 @@ Host *.westga.edu User ven-gliverman HOST *.delivery.puppetlabs.net IdentityFile ~/.ssh/id_rsa-acceptance +Host beanbag.technicalissues.us + User gliverma