diff --git a/defaults/config.js b/defaults/config.js index 9f757e5f..b103593d 100644 --- a/defaults/config.js +++ b/defaults/config.js @@ -73,7 +73,7 @@ module.exports = { // which in result fixes mixed content warnings. // // If storage is enabled, The Lounge will fetch and store images and thumbnails - // in ~/.lounge/storage folder, or %HOME%/storage if --home is used. + // in the `${LOUNGE_HOME}/storage` folder. // // Images are deleted when they are no longer referenced by any message (controlled by maxHistory), // and the folder is cleaned up on every The Lounge restart. diff --git a/src/command-line/config.js b/src/command-line/config.js index 1eae72f2..e95763d5 100644 --- a/src/command-line/config.js +++ b/src/command-line/config.js @@ -7,7 +7,7 @@ var Helper = require("../helper"); program .command("config") - .description(`Edit configuration file located at ${colors.green(Helper.CONFIG_PATH)}.`) + .description(`Edit configuration file located at ${colors.green(Helper.CONFIG_PATH)}. Set the ${colors.green("LOUNGE_HOME")} environment variable to change.`) .action(function() { var child_spawn = child.spawn( process.env.EDITOR || "vi", diff --git a/src/command-line/index.js b/src/command-line/index.js index 860a2572..e7008456 100644 --- a/src/command-line/index.js +++ b/src/command-line/index.js @@ -10,12 +10,12 @@ var path = require("path"); var Helper = require("../helper"); program.version(Helper.getVersion(), "-v, --version") - .option("--home ", "path to configuration folder") + .option("--home ", `${colors.bold("[DEPRECATED]")} Use the ${colors.green("LOUNGE_HOME")} environment variable instead.`) .parseOptions(process.argv); if (program.home) { - log.warn(`${colors.green("--home")} is deprecated and will be removed in a future version.`); - log.warn(`Use ${colors.green("LOUNGE_HOME")} environment variable instead.`); + log.warn(`${colors.green("--home")} is ${colors.bold("deprecated")} and will be removed in a future version.`); + log.warn(`Use the ${colors.green("LOUNGE_HOME")} environment variable instead.`); } let home = program.home || process.env.LOUNGE_HOME;