From 3ed8e8e3c4616a6fb34cef3294ac453043f7f529 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 5 Jan 2026 10:45:50 +0100 Subject: [PATCH] Quiet the normal execution --- bin/omarchy-theme-set-obsidian | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bin/omarchy-theme-set-obsidian b/bin/omarchy-theme-set-obsidian index 83980f6b..6906b28d 100755 --- a/bin/omarchy-theme-set-obsidian +++ b/bin/omarchy-theme-set-obsidian @@ -652,9 +652,6 @@ if [ "${1:-}" = "--reset" ]; then exit 0 fi -# Main update logic -echo "🔄 Updating Obsidian vaults..." - # Step 1: ensure registry exists (bootstrap if needed) ensure_vaults_file @@ -676,9 +673,7 @@ while IFS= read -r vault_path || [ -n "$vault_path" ]; do # Step 3: update theme.css if [ -f "$CURRENT_THEME_DIR/obsidian.css" ]; then cp "$CURRENT_THEME_DIR/obsidian.css" "$THEME_DIR/theme.css" - echo " ✅ $vault_name (custom theme)" else extract_theme_data >"$THEME_DIR/theme.css" - echo " ✅ $vault_name (generated theme)" fi done <"$VAULTS_FILE"