Skip to content

Instantly share code, notes, and snippets.

View SBoudrias's full-sized avatar

Simon Boudrias SBoudrias

View GitHub Profile
@SBoudrias
SBoudrias / CalendarColor.gs
Last active September 12, 2024 19:45
Google script to add colours & focus time to your calendar
function ColorEvents() {
const today = new Date();
const later = new Date();
later.setDate(later.getDate() + 20);
Logger.log(`Updating from ${today} to ${later}`);
const calendar = CalendarApp.getCalendarById('simon.boudrias@datadoghq.com');
const allEvents = calendar.getEvents(today, later).filter((event) => !event.isAllDayEvent());
function setEventColor(event, color) {