calckey ascii art
This commit is contained in:
parent
54e805eaa6
commit
3632eec20b
2 changed files with 16 additions and 13 deletions
|
@ -23,21 +23,23 @@ const meta = JSON.parse(fs.readFileSync(`${_dirname}/../../../../built/meta.json
|
||||||
const logger = new Logger('core', 'cyan');
|
const logger = new Logger('core', 'cyan');
|
||||||
const bootLogger = logger.createSubLogger('boot', 'magenta', false);
|
const bootLogger = logger.createSubLogger('boot', 'magenta', false);
|
||||||
|
|
||||||
const themeColor = chalk.hex('#86b300');
|
const themeColor = chalk.hex('#31748f');
|
||||||
|
|
||||||
function greet() {
|
function greet() {
|
||||||
if (!envOption.quiet) {
|
if (!envOption.quiet) {
|
||||||
//#region Misskey logo
|
//#region Misskey logo
|
||||||
const v = `v${meta.version}`;
|
const v = `v${meta.version}`;
|
||||||
console.log(themeColor(' _____ _ _ '));
|
console.log(themeColor(' ___ _ _ '));
|
||||||
console.log(themeColor(' | |_|___ ___| |_ ___ _ _ '));
|
console.log(themeColor(' / __\\__ _| | ___| | _____ _ _ '));
|
||||||
console.log(themeColor(' | | | | |_ -|_ -| \'_| -_| | |'));
|
console.log(themeColor(' / / / _` | |/ __| |/ / _ \ | | |'));
|
||||||
console.log(themeColor(' |_|_|_|_|___|___|_,_|___|_ |'));
|
console.log(themeColor('/ /__| (_| | | (__| < __/ |_| |'));
|
||||||
|
console.log(themeColor('\\____/\\__,_|_|\\___|_|\\_\\___|\\__, |'));
|
||||||
|
console.log(themeColor(' |___/ '));
|
||||||
console.log(' ' + chalk.gray(v) + themeColor(' |___|\n'.substr(v.length)));
|
console.log(' ' + chalk.gray(v) + themeColor(' |___|\n'.substr(v.length)));
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
console.log(' Misskey is an open-source decentralized microblogging platform.');
|
console.log(' Misskey is an open-source decentralized microblogging platform.');
|
||||||
console.log(chalk.rgb(255, 136, 0)(' If you like Misskey, please donate to support development. https://www.patreon.com/syuilo'));
|
console.log(chalk.rgb(255, 136, 0)(' If you like Calckey, please consider starring or contributing to the repo. https://codeberg.org/thatonecalculator/calckey'));
|
||||||
|
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log(chalkTemplate`--- ${os.hostname()} {gray (PID: ${process.pid.toString()})} ---`);
|
console.log(chalkTemplate`--- ${os.hostname()} {gray (PID: ${process.pid.toString()})} ---`);
|
||||||
|
|
|
@ -7,15 +7,16 @@ doctype html
|
||||||
|
|
||||||
//
|
//
|
||||||
-
|
-
|
||||||
_____ _ _
|
___ _ _
|
||||||
| |_|___ ___| |_ ___ _ _
|
/ __\__ _| | ___| | _____ _ _
|
||||||
| | | | |_ -|_ -| '_| -_| | |
|
/ / / _` | |/ __| |/ / _ \ | | |
|
||||||
|_|_|_|_|___|___|_,_|___|_ |
|
/ /__| (_| | | (__| < __/ |_| |
|
||||||
|___|
|
\____/\__,_|_|\___|_|\_\___|\__, |
|
||||||
|
|___/
|
||||||
|
|
||||||
Thank you for using Calckey!
|
Thank you for using Calckey!
|
||||||
If you are reading this message... how about joining the development?
|
If you are reading this message... how about joining the development?
|
||||||
https://github.com/misskey-dev/misskey
|
https://codeberg.org/thatonecalculator/calckey
|
||||||
|
|
||||||
|
|
||||||
html
|
html
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue