initial commit
This commit is contained in:
Executable
+12
@@ -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
|
||||
Reference in New Issue
Block a user