@@ -73,7 +73,7 @@ casks=(
7373 # "font-jetbrains-mono-nerd-font"
7474 " microsoft-azure-storage-explorer"
7575 " drawio" # Online diagram software
76- " tolaria" # Tolaria - markdown-first note app (https://tolaria.md/)
76+ " tolaria" # Tolaria - markdown-first note app (https://tolaria.md/)
7777 " dbeaver-community" # Free Universal Database Tool
7878 " Zed" # Multiplayer code editor
7979 # "protege" # OWL for ontologies and knowledge graph
@@ -88,7 +88,6 @@ casks=(
8888 " powershell" # PowerShell for Mac
8989 " fsnotes" # Note taking app with markdown support
9090 " go2shell" # Opens a terminal window to the current directory in Finder
91- " tolaria" # Tolaria - markdown-first note app (https://tolaria.md/. Alrernate to fsnqotes
9291)
9392
9493# Function to check if a command exists
@@ -169,6 +168,20 @@ echo -e "${UMAGENTA}===> Start installation.${RESET}"
169168
170169install_homebrew
171170
171+ echo -e " ${CYAN} ===> Ensuring Homebrew tap 'jazzyalex/agent-sessions' is available...${RESET} "
172+ if command_exists brew; then
173+ if brew tap | grep -q ' ^jazzyalex/agent-sessions$' ; then
174+ echo -e " ${CYAN} ===> Homebrew tap 'jazzyalex/agent-sessions' already present.${RESET} "
175+ else
176+ echo -e " ${CYAN} ===> Tapping jazzyalex/agent-sessions...${RESET} "
177+ if brew tap jazzyalex/agent-sessions; then
178+ echo -e " ${GREEN} ===> Tapped jazzyalex/agent-sessions.${RESET} "
179+ else
180+ echo -e " ${YELLOW} ===> Failed to tap jazzyalex/agent-sessions (continuing).${RESET} "
181+ fi
182+ fi
183+ fi
184+
172185echo -e " ${BLUE} ===> Updating Homebrew...${RESET} "
173186brew update
174187
0 commit comments