From 68daa27893d5c527d18c2c1312ec4affcc977760 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Thu, 4 Jun 2026 14:41:59 -0700 Subject: [PATCH 1/2] Remove starship custom for gemini-cli --- dotfiles/config/starship.toml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/dotfiles/config/starship.toml b/dotfiles/config/starship.toml index af67f0a..c167349 100644 --- a/dotfiles/config/starship.toml +++ b/dotfiles/config/starship.toml @@ -39,16 +39,3 @@ disabled = true [kubernetes] disabled = false detect_folders = ["k8s"] - -[custom.gemini_context] -description = "Displays the current Gemini CLI context" -when = "test -n \"$GEMINI_CLI_HOME\"" -command = """ -context_dir=\"${XDG_CONFIG_HOME:-$HOME/.config}/gemini\" -if [[ \"$GEMINI_CLI_HOME\" == $context_dir/* ]]; then - basename \"$GEMINI_CLI_HOME\" -fi -""" -style = "bold blue" -format = "♊[$output](blue) " -shell = ["/bin/sh", "-c"] From 2e0c11c044a9630fc5674c88f0eae5cfe69b96c3 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Tue, 9 Jun 2026 08:59:05 -0700 Subject: [PATCH 2/2] Support LC paths --- bin/newnote | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/newnote b/bin/newnote index 60773bc..a79af46 100755 --- a/bin/newnote +++ b/bin/newnote @@ -122,9 +122,13 @@ else # Fallback paths in order: ~/Notes, ~/Obsidian/Notes, ~/Personal/Notes, ~/Projects/Notes. FALLBACKS=( "$HOME/Notes" + "$HOME/notes" "$HOME/Obsidian/Notes" + "$HOME/Obsidian/notes" "$HOME/Personal/Notes" + "$HOME/Personal/notes" "$HOME/Projects/Notes" + "$HOME/Projects/notes" ) for path in "${FALLBACKS[@]}"; do if [[ -d "$path" && -d "$path/.obsidian" ]]; then