16 lines
481 B
Bash
Executable File
16 lines
481 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# calendar-invite — wrapper script for the calendar invite tool.
|
|
#
|
|
# Usage:
|
|
# ./calendar-invite.sh send [options] # send a calendar invite
|
|
# ./calendar-invite.sh reply [options] # accept/decline/tentative
|
|
#
|
|
# Requires: uv, himalaya, vdirsyncer (for CalDAV sync).
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
SKILL_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
|
|
exec uv run --project "$SKILL_DIR" python "$SCRIPT_DIR/calendar_invite.py" "$@"
|