diff options
author | Minteck <contact@minteck.org> | 2022-11-28 17:31:34 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-11-28 17:31:34 +0100 |
commit | 7923aa8942b55884320ef2428417e3ee4b121613 (patch) | |
tree | 7993632f2898b1998f25b11ce40a8d2eb3d44730 /Components/ShowMisty | |
download | mistyos-og-7923aa8942b55884320ef2428417e3ee4b121613.tar.gz mistyos-og-7923aa8942b55884320ef2428417e3ee4b121613.tar.bz2 mistyos-og-7923aa8942b55884320ef2428417e3ee4b121613.zip |
Diffstat (limited to 'Components/ShowMisty')
-rw-r--r-- | Components/ShowMisty/index.js | 30 | ||||
-rw-r--r-- | Components/ShowMisty/metadata.yml | 22 |
2 files changed, 52 insertions, 0 deletions
diff --git a/Components/ShowMisty/index.js b/Components/ShowMisty/index.js new file mode 100644 index 0000000..2078a46 --- /dev/null +++ b/Components/ShowMisty/index.js @@ -0,0 +1,30 @@ +const chalk = require(__dirname + '/../../MistyCore/node_modules/chalk'); +const fs = require("fs"); + +module.exports = () => { + process.stdout.write("\n "); + process.stdout.write(chalk.blue("██")); + process.stdout.write(chalk.yellow("██")); + process.stdout.write(" \n "); + process.stdout.write(chalk.yellow("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" \n "); + process.stdout.write(chalk.yellow("██")); + process.stdout.write(" "); + process.stdout.write(chalk.blue("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" \n "); + process.stdout.write(chalk.blue("██")); + process.stdout.write(" "); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" \n "); + process.stdout.write(chalk.yellow("██")); + process.stdout.write(" "); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" "); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" \n\n"); +}
\ No newline at end of file diff --git a/Components/ShowMisty/metadata.yml b/Components/ShowMisty/metadata.yml new file mode 100644 index 0000000..e4d4266 --- /dev/null +++ b/Components/ShowMisty/metadata.yml @@ -0,0 +1,22 @@ +description: Shows a Misty ASCII art +internal: true + +aliases: + - misty + - brightdawn + - mistybrightdawn + - mlp + +manual: + summary: | + This command shows a Misty ASCII art on the console. Yes, that's literally it. + + parameters: [] + + final: null + + examples: [] + + compatibility: + mistyos: '>=1.0.0' + kernel: '>=5.10.0'
\ No newline at end of file |