feat: add skip functionality to boot animation and update chat room alias

This commit is contained in:
2026-03-14 23:55:18 +11:00
parent 5a782e46f8
commit 1f658c179f
2 changed files with 41 additions and 11 deletions

View File

@@ -487,7 +487,7 @@ const commands = {
description: 'Connect to chat room',
execute: async (args) => {
const homeserver = 'https://chat.ruv.wtf';
const roomAlias = '#generalchat:b.ruv.wtf';
const roomAlias = '#publicchat:ruv.wtf';
// Generate UUID
const generateUUID = () => {
@@ -998,7 +998,7 @@ async function writeStartupChatMotd() {
const result = await Promise.race([
(async () => {
const [latest, presence] = await Promise.all([
fetchPublicLastMessage('#generalchat:b.ruv.wtf'),
fetchPublicLastMessage('#publicchat:ruv.wtf'),
fetchPublicPresence('@litruv:b.ruv.wtf')
]);
return { latest, presence };