idk anymore

This commit is contained in:
2025-11-08 21:18:07 +02:00
parent eda5c75a07
commit fb6ffa2e11
22 changed files with 274 additions and 173 deletions

View File

@@ -37,26 +37,21 @@ function chooseRandom(array: string[]): string {
return array[index];
}
const splashes = [
"Keep on ricing yo' Hyprland...",
"Contains infinite genders!",
"You are valid!",
"Blogsy is so AWESOME!",
"I love Blogsy!",
"Whats yer favorite type o wood?",
const splashes = [
"大好き<b>ラルセイ</b>",
"ハイパーランド"
];
const debug: boolean = false as false | true;
const debug: boolean = true as false | true;
const welcome = "ハイパーランド へようこそ!" // "Sveicināti Hyprland!"
if (debug === true) {
splashes.forEach(async (a) => {
execSync(`notify-send "Welcome to Hyprland!" "${a}"`);
execSync(`notify-send "${welcome}" "${a}"`);
});
} else {
const randomSplash = chooseRandom(splashes);
execSync(`notify-send "Welcome to Hyprland!" "${randomSplash}"`);
execSync(`notify-send "${welcome}" "${randomSplash}"`);
}