I know that time zone is not really implemented in orgmode but I wonder if anyone has some sort of workaround to have saved meetings in different time zones in org agenda.
I also don’t have good solution yet.
I use webiste to get the general idea of all the time in each time zone
on macos
I also use below script to help me shedule meeting
my_time=`date '+%Y-%m-%d %H:%M:%S+0800'`
my_time="2024-09-19 01:53:27+0800"
TZ=America/New_York gdate "+New York - EST : %Y-%m-%d %H:%M %:z" -d "$my_time"
TZ=America/Mexico_City gdate "+Mexico City - CST : %Y-%m-%d %H:%M %:z" -d "$my_time"
TZ=Asia/Kolkata gdate "+Asia/Kolkata - IST : %Y-%m-%d %H:%M %:z" -d "$my_time"
TZ=Asia/shanghai gdate "+Asia/shanghai : %Y-%m-%d %H:%M %:z" -d "$my_time"
1 Like