From 75d0aeea57bd342670b987e32f41130d174eaf51 Mon Sep 17 00:00:00 2001 From: Cameron Bernhardt Date: Mon, 20 Jul 2020 04:45:47 -0400 Subject: [PATCH] Some styling tweaks --- src/init.js | 2 +- src/postinstall.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/init.js b/src/init.js index 16e501e..77b7ab0 100755 --- a/src/init.js +++ b/src/init.js @@ -89,7 +89,7 @@ function storePrefs(sendEmail, sendPass, recvEmail, recvPass, shouldStore, recvA fs.mkdirSync(configPath); } - console.log(`Login successful. Storing your session in ${chalk.yellow(tools.getConfigDir())}...`); + console.log(`${chalk.green("Login successful.")} Storing your session in ${chalk.yellow(tools.getConfigDir())}...`); fs.writeFileSync(tools.getConfigPath(), JSON.stringify(config)); callback(null, sendApi); }); diff --git a/src/postinstall.js b/src/postinstall.js index 29bb9e5..ed3efbc 100755 --- a/src/postinstall.js +++ b/src/postinstall.js @@ -3,4 +3,4 @@ const chalk = require("chalk"); const tools = require("./tools"); tools.printHeader(); -console.log(`${chalk.yellow("INFO")} Run ${chalk.blue("mnotify --init")} to get started.`); \ No newline at end of file +console.log(`Thanks for installing! Run ${chalk.blue("mnotify --init")} to get started.`); \ No newline at end of file