This commit is contained in:
2025-11-19 22:01:25 +02:00
parent afef35b6f6
commit 3a7686713f
16 changed files with 276 additions and 212 deletions

View File

@@ -5,7 +5,7 @@ import { execSync } from "child_process";
const birthday = new Date(2009, 7, 16);
const age = Math.floor(
(Date.now() - birthday.getTime()) / (1000 * 60 * 60 * 24 * 365)
(Date.now() - birthday.getTime()) / (1000 * 60 * 60 * 24 * 365),
);
const isBirthday =
@@ -37,14 +37,11 @@ function chooseRandom(array: string[]): string {
return array[index];
}
const splashes = [
"大好き<b>ラルセイ</b>",
"ハイパーランド"
];
const splashes = ["大好き<b>ラルセイ</b>", "ハイパーランド"];
const debug: boolean = true as false | true;
const welcome = "ハイパーランド へようこそ!" // "Sveicināti Hyprland!"
const welcome = "ハイパーランド へようこそ!"; // "Sveicināti Hyprland!"
if (debug === true) {
splashes.forEach(async (a) => {