19 lines
754 B
Bash
19 lines
754 B
Bash
#!/bin/bash
|
|
# Environment setup for Calendar skill with iCloud
|
|
# Add this to your ~/.bashrc or ~/.zshrc to persist
|
|
|
|
# iCloud Calendar (Anthony Martin)
|
|
export CALENDAR_TYPE=icloud
|
|
export CALENDAR_ICLOUD_ID='Anthony@martinwa.org'
|
|
export CALENDAR_ICLOUD_PASS='mvas-vwsk-ktiv-anex'
|
|
|
|
# Work Calendar (Pacific Energy) - will set up when Anthony provides details
|
|
# export CALENDAR_TYPE=work
|
|
# export CALENDAR_WORK_EMAIL='anthony@pacificenergy.com.au'
|
|
# export CALENDAR_WORK_URL='https://pacificenergy.com/calendars'
|
|
|
|
echo "✅ Calendar credentials loaded for Anthony Martin"
|
|
echo " • Google Calendar: configured"
|
|
echo " • iCloud Calendar: configured (Anthony@martinwa.org)"
|
|
echo " • Work Calendar: ready (set up when Pacific Energy email provided)"
|