aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-05-18 13:52:10 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-05-18 13:52:10 +0200
commit13c36c432bcad740950d905629d0285c1037ed36 (patch)
treebc07704d20f960a4919d7ef9db42cba121368737 /src/main.cpp
parentPlugin command-line parameters (diff)
downloadsmolbote-13c36c432bcad740950d905629d0285c1037ed36.tar.xz
Update manpage
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d578d24..89f3005 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -27,10 +27,14 @@ int main(int argc, char **argv)
if(config->exists("help")) {
std::cout << "smolbote " << SMOLBOTE_VERSION << ": yet another no-frills browser" << std::endl;
- std::cout << "Usage: " << argv[0] << " [options] URL(s)" << std::endl;
+ std::cout << "Usage: " << argv[0] << " [options] URL(s)" << std::endl << std::endl;
- std::cout << std::endl << "Command-line Options: " << std::endl << config->commandlineOptions() << std::endl;
- std::cout << std::endl << "Configuration Options: " << std::endl << config->configurationOptions() << std::endl;
+ std::cout << "Command-line Options: " << std::endl << config->commandlineOptions() << std::endl;
+ std::cout << "Configuration Options: " << std::endl << config->configurationOptions() << std::endl;
+
+#ifdef Q_OS_LINUX
+ std::cout << std::endl << "For more information refer to the manual page smolbote.7" << std::endl;
+#endif
return 0;
}