diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-07-09 23:55:41 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-07-10 00:55:13 +0200 |
commit | 3e17bfb54c3d050ecd56ae2853e75002017c9958 (patch) | |
tree | 6cdd9ec831ab0439858ce3005dd770ee7bf6841d /degesch.c | |
parent | 7a7192d327ea92285653f4de7b0b21046437498d (diff) | |
download | xK-3e17bfb54c3d050ecd56ae2853e75002017c9958.tar.gz xK-3e17bfb54c3d050ecd56ae2853e75002017c9958.tar.xz xK-3e17bfb54c3d050ecd56ae2853e75002017c9958.zip |
degesch: add a first time help
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -8570,6 +8570,34 @@ end: return root; } +static const char *g_first_time_help[] = +{ + "", + "\x02Welcome to degesch!", + "", + "To get a list of all commands, type \x02/help\x0f. To obtain", + "more information on a command or option, simply add it as", + "a parameter, e.g. \x02/help set\x0f or \x02/help behaviour.logging\x0f.", + "", + "To switch between buffers, press \x02" + "F5/Ctrl-P\x0f or \x02" "F6/Ctrl-N\x0f.", + "", + "Finally, adding a network is as simple as:", + " - \x02/server add freenode\x0f", + " - \x02/set servers.freenode.addresses = \"chat.freenode.net\"\x0f", + " - \x02/connect freenode\x0f", + "", + "That should be enough to get you started. Have fun!", + "" +}; + +static void +show_first_time_help (struct app_context *ctx) +{ + for (size_t i = 0; i < N_ELEMENTS (g_first_time_help); i++) + log_global_indent (ctx, "#m", g_first_time_help[i]); +} + static void load_configuration (struct app_context *ctx) { @@ -8588,6 +8616,7 @@ load_configuration (struct app_context *ctx) log_global_error (ctx, "#s", e->message); error_free (e); } + if (root) { config_item_destroy (ctx->config.root); @@ -8595,6 +8624,10 @@ load_configuration (struct app_context *ctx) config_load (&ctx->config, root); log_global_status (ctx, "Configuration loaded"); } + else + { + show_first_time_help (ctx); + } } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |