diff options
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0fceffc0..3a37f067 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -63,7 +63,10 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv) // Define the command line options using KCmdLineOptions KCmdLineOptions options; - // adding URL option + // adding options + options.add("incognito" , ki18n("Open in incognito mode")); + options.add("webapp=URL" , ki18n("Open URL as web app (in a simple window, as separate process)")); + options.add("window" , ki18n("Open a standalone window (i.e. WITHOUT the tabbar)")); options.add("+[URL]" , ki18n("Location to open")); // Register the supported options |