> /home/jd
ES / EN

Device Profiles Setup: Desktop vs. Mobile

Obsidian configuration architecture for a shared desktop profile and an isolated, lightweight mobile profile.

📌 Purpose

đź”™ Main context: This guide is part of the architecture documented in the Infrastructure MOC.

Define how Obsidian is configured across multiple platforms. The goal is to maintain one shared desktop environment—avoiding duplicate plugin setup—while keeping mobile devices isolated and lightweight for fast capture and reading, with lower battery and interface overhead.

đź§  Architecture and Rationale

1. Shared Desktop Environment (Hackintosh and MacBook)

  • Strategy: Share the same configuration folder, .obsidian.
  • Rationale: This avoids duplicate work. A plugin installed or configured on the primary Hackintosh is automatically available with the same settings on the academic MacBook. Visual plugins, keyboard shortcuts, and lightweight automation do not materially affect the MacBook’s battery life.

2. Isolated Mobile Environment (Android Tablet and Phone)

  • Strategy: Isolate the configuration with Obsidian’s Override config folder option.
  • Rationale: Mobile devices have smaller touch interfaces and operating systems that aggressively stop background processes. Heavy desktop plugins can make Obsidian slow to open or difficult to use on Android. A separate profile keeps the application responsive for quickly capturing notes in 00_inbox.

🛠️ Step-by-Step Configuration

1. Hackintosh (Primary Machine)

  • Action: None; keep the default profile.
  • Setting: Under Settings > About > Override config folder, keep .obsidian.
  • Plugin state: Keep all required plugins enabled, including Local Backup configured with the Google Drive destination.

2. MacBook (Academic Use)

  • Action: Use the same profile as the Hackintosh, but create a placeholder destination so the backup plugin does not fail. Google Drive is intentionally not installed on this machine to reduce background resource usage.

  • Setting: Under Settings > About > Override config folder, keep .obsidian.

  • Placeholder directory: Open Terminal in macOS and create the exact path expected by Local Backup:

    Bash
    mkdir -p "/Users/jd/My Drive/99_Archive/Obsidian_Backups"
  • Result: The MacBook shares the Hackintosh’s plugins and configuration. When Obsidian closes, Local Backup writes a .zip file to this local path without reporting a missing-destination error.

3. Android Devices (Tablet and Phone)

  • Action: Isolate the configuration to maximize responsiveness.
  • Setting: Open Settings > About > Override config folder.
  • New value: Enter .obsidian-mobile and restart Obsidian.
  • Plugin state: Disable any plugin that is unnecessary or resource-heavy on mobile, especially Local Backup.