From 1c170f04304b3048129b414bda98df1491f35d9e Mon Sep 17 00:00:00 2001 From: WubzyGD Date: Fri, 18 Nov 2022 23:50:41 -0700 Subject: [PATCH] pretty gwadient --- src/handle/startup/run/hello.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/handle/startup/run/hello.js b/src/handle/startup/run/hello.js index 5e1af27..cc3bd61 100644 --- a/src/handle/startup/run/hello.js +++ b/src/handle/startup/run/hello.js @@ -1,9 +1,10 @@ const moment = require("moment"); const chalk = require('chalk'); const os = require('os'); +const gs = require('gradient-string'); module.exports = client => { - client.log(`Logged in as ${chalk.blueBright(client.user.username)}. ${chalk.greenBright(`[${chalk.grey(client.user.id)}]`)}`); + client.log(`Logged in as ${gs.instagram(client.user.username)}. ${chalk.greenBright(`[${chalk.grey(client.user.id)}]`)}`); client.log(`Time: ${chalk.blueBright(moment().format('MMMM d, YYYY - HH:MM:SS'))}`); client.log(`Running on ${chalk.blueBright(client.guilds.cache.size)} ${chalk.blue("servers")} and interacting with about ${chalk.blueBright(client.users.cache.size)} ${chalk.blue("users")}.`); client.log(`This ${chalk.blue('heap')} has ${chalk.blueBright((process.memoryUsage().heapTotal / (1024 ** 2)).toFixed(2))}MB allocated; The ${chalk.blue('machine')} has ${chalk.blueBright((os.totalmem() / (1024 ** 3)).toFixed(2))}GB (${chalk.blueBright((os.freemem() / (1024 ** 3)).toFixed(2))}GB free)`);