rython-task-bot-v2/widgets/vertical/config.js
2026-07-01 16:55:55 +10:00

39 lines
569 B
JavaScript

"use strict";
const configs = (function () {
const streamerBotSettings = {
host: "127.0.0.1",
port: 6968,
endpoint: "/",
};
const commands = [
"!taskhelp",
"!add",
"!edit",
"!done",
"!remove",
"!focus",
"!clearmydone",
];
const userColorSettings = {
autoUserColor: true,
};
const emoteSettings = {
enabled: true,
channelName: "rythondev",
channelId: "248474026",
providers: ["7tv", "bttv", "ffz"],
size: "1x",
cacheHours: 24,
};
return {
streamerBotSettings,
commands,
userColorSettings,
emoteSettings,
};
})();