Updated some scripts and configuration

This commit is contained in:
2023-02-14 21:06:28 -05:00
parent 689d0ba29e
commit 957ee2d2fa
5 changed files with 28 additions and 12 deletions

View File

@@ -45,3 +45,11 @@ stow:
# Order matters, need to install home-brew first then formula
bootstrap: bootstrap-homebrew bootstrap-brews bootstrap-casks stow bootstrap-non-brews bootstrap-app-store
open ~/Downloads
# make a local zsh configuration file, to extend
# the normal .zshrc for configuration that is only
# relevant on the local machine.
zshrc-local:
touch "$(PWD)/zsh/config/.zshrc-local"
vim "$(PWD)/zsh/config/.zshrc-local"

View File

@@ -1,4 +1,2 @@
mas "pwSafe", id: "520993579"
mas "Xcode", id: "497799835"
mas "Home Assistant", id: "1099568401"
mas "Vimari", id: "1480933944"

View File

@@ -1,12 +1,13 @@
tap "homebrew/cask"
# casks
cask "docker"
cask "google-chrome"
cask "iterm2"
cask "microsoft-teams"
cask "obs"
cask "paw"
cask "rectangle"
cask "sketchup-pro"
cask "docker" # development containers
cask "google-chrome" # certain processes work better in chrome
cask "iterm2" # terminal application
#cask "microsoft-teams"
#cask "obs" # video / recording tools
cask "onyx" # macOS utilities
cask "rapidapi" # API utility
cask "rectangle" # Window management
cask "sketchup-pro" # 3D modeling

11
scripts/scripts/ncis Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
set -e
# Creates a new `zet` inside the House Call Pro `Zettlekasten`
_main() {
(ZETDIR="$HOME/Documents/NCISummit" eval zet "$@")
}
_main "$@"

View File

@@ -99,8 +99,6 @@ fpath_prepend() {
# last arg will be first in path
path_prepend \
"/usr/local/sbin" \
"/usr/local/bin" \
"/opt/homebrew/bin" \
"/opt/homebrew/sbin" \
"$HOME/.local/bin" \