2021-12-24 02:16:26 +01:00
|
|
|
(() => {
|
|
|
|
// <stdin>
|
|
|
|
window.infoBeamerConfig = /* @__PURE__ */ new Map();
|
|
|
|
window.infoBeamerConfig.set("workerBaseURL", "/");
|
2021-12-25 07:28:56 +01:00
|
|
|
window.infoBeamerConfig.set("scheduleURL", "/everything.schedule.json");
|
|
|
|
window.infoBeamerConfig.set("scheduleFetchInterval", 60);
|
2021-12-24 02:16:26 +01:00
|
|
|
window.infoBeamerConfig.set("twitterURL", "/tweets-rc3.json");
|
2021-12-26 21:23:15 +01:00
|
|
|
window.infoBeamerConfig.set("twitterFetchInterval", 120);
|
2021-12-25 07:28:56 +01:00
|
|
|
window.infoBeamerConfig.set("mastodonURL", "/toots-rc3-chaos.social.json");
|
2021-12-26 21:23:15 +01:00
|
|
|
window.infoBeamerConfig.set("mastodonFetchInterval", 120);
|
2021-12-24 02:16:26 +01:00
|
|
|
window.infoBeamerConfig.set("musicURL", "/music.json");
|
2021-12-27 00:26:02 +01:00
|
|
|
window.infoBeamerConfig.set("musicFetchInterval", 1);
|
2021-12-24 02:16:26 +01:00
|
|
|
console.log("Info Beamer Configuration: ");
|
|
|
|
console.log(window.infoBeamerConfig);
|
|
|
|
})();
|