Skip to content

Commit

Permalink
feat: new holy-welness emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
dgokcin committed Aug 30, 2024
1 parent 3ae8041 commit c5efe0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Code.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const emojiMap = {
'stay': '🏠',
'holy shred': '💪',
'holy ride': '🚵',
'holy wellness': '🧖',
'padel': '🏸',
'meeting': '🤝',
'catch-up': '☕',
Expand Down Expand Up @@ -78,7 +79,7 @@ function ColorEvents() {
} else if (originalTitle.includes("stay") || originalTitle.includes("reservation")) {
color = CalendarApp.EventColor.PALE_BLUE;
Logger.log("Title: " + title + " - Color to print: PALE_BLUE");
} else if (originalTitle.includes("holy shred") || originalTitle.includes("holy ride") || originalTitle.includes("padel")) {
} else if (originalTitle.includes("holy shred") || originalTitle.includes("holy ride") || originalTitle.includes("holy wellness") || originalTitle.includes("padel")) {
color = CalendarApp.EventColor.RED;
Logger.log("Title: " + title + " - Color to print: RED");
} else if (originalTitle.startsWith("🤝 Meeting") || originalTitle.includes("catch-up") || originalTitle.includes("video call") || originalTitle.includes("call") || originalTitle.includes("ara")) {
Expand Down

0 comments on commit c5efe0e

Please sign in to comment.