mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
28 lines
780 B
Bash
Executable File
28 lines
780 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Sync Omarchy theme to all Obsidian vaults
|
|
|
|
CURRENT_THEME_DIR="$HOME/.config/omarchy/current/theme"
|
|
|
|
[ -f "$CURRENT_THEME_DIR/obsidian.css" ] || exit 0
|
|
|
|
jq -r '.vaults | values[].path' ~/.config/obsidian/obsidian.json 2>/dev/null | while read -r vault_path; do
|
|
[ -d "$vault_path/.obsidian" ] || continue
|
|
|
|
theme_dir="$vault_path/.obsidian/themes/Omarchy"
|
|
mkdir -p "$theme_dir"
|
|
|
|
[ -f "$theme_dir/manifest.json" ] || cat >"$theme_dir/manifest.json" <<'EOF'
|
|
{
|
|
"name": "Omarchy",
|
|
"version": "1.0.0",
|
|
"minAppVersion": "0.16.0",
|
|
"description": "Automatically syncs with your current Omarchy system theme colors and fonts",
|
|
"author": "Omarchy",
|
|
"authorUrl": "https://omarchy.org"
|
|
}
|
|
EOF
|
|
|
|
cp "$CURRENT_THEME_DIR/obsidian.css" "$theme_dir/theme.css"
|
|
done
|