initial commit

This commit is contained in:
2026-05-26 14:27:01 +02:00
commit ef411fbe23
11 changed files with 427 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
# Wrapper script for importing files into Obsidian.
# Adjust VAULT_PATH below or leave empty to rely on ~/.bashrc / env / auto-detection.
VAULT_PATH=""
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
if [ -n "$VAULT_PATH" ]; then
python3 "$SCRIPT_DIR/main.py" --vault "$VAULT_PATH" "$@"
else
python3 "$SCRIPT_DIR/main.py" "$@"
fi