mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
Updated some scripts and configuration
This commit is contained in:
8
Makefile
8
Makefile
@@ -45,3 +45,11 @@ stow:
|
|||||||
# Order matters, need to install home-brew first then formula
|
# Order matters, need to install home-brew first then formula
|
||||||
bootstrap: bootstrap-homebrew bootstrap-brews bootstrap-casks stow bootstrap-non-brews bootstrap-app-store
|
bootstrap: bootstrap-homebrew bootstrap-brews bootstrap-casks stow bootstrap-non-brews bootstrap-app-store
|
||||||
open ~/Downloads
|
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"
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,2 @@
|
|||||||
mas "pwSafe", id: "520993579"
|
mas "pwSafe", id: "520993579"
|
||||||
mas "Xcode", id: "497799835"
|
|
||||||
mas "Home Assistant", id: "1099568401"
|
mas "Home Assistant", id: "1099568401"
|
||||||
mas "Vimari", id: "1480933944"
|
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
tap "homebrew/cask"
|
tap "homebrew/cask"
|
||||||
|
|
||||||
# casks
|
# casks
|
||||||
cask "docker"
|
cask "docker" # development containers
|
||||||
cask "google-chrome"
|
cask "google-chrome" # certain processes work better in chrome
|
||||||
cask "iterm2"
|
cask "iterm2" # terminal application
|
||||||
cask "microsoft-teams"
|
#cask "microsoft-teams"
|
||||||
cask "obs"
|
#cask "obs" # video / recording tools
|
||||||
cask "paw"
|
cask "onyx" # macOS utilities
|
||||||
cask "rectangle"
|
cask "rapidapi" # API utility
|
||||||
cask "sketchup-pro"
|
cask "rectangle" # Window management
|
||||||
|
cask "sketchup-pro" # 3D modeling
|
||||||
|
|
||||||
|
|||||||
11
scripts/scripts/ncis
Executable file
11
scripts/scripts/ncis
Executable 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 "$@"
|
||||||
@@ -99,8 +99,6 @@ fpath_prepend() {
|
|||||||
|
|
||||||
# last arg will be first in path
|
# last arg will be first in path
|
||||||
path_prepend \
|
path_prepend \
|
||||||
"/usr/local/sbin" \
|
|
||||||
"/usr/local/bin" \
|
|
||||||
"/opt/homebrew/bin" \
|
"/opt/homebrew/bin" \
|
||||||
"/opt/homebrew/sbin" \
|
"/opt/homebrew/sbin" \
|
||||||
"$HOME/.local/bin" \
|
"$HOME/.local/bin" \
|
||||||
|
|||||||
Reference in New Issue
Block a user