summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-09-18 20:31:47 +0200
committeraristocratos <gnmjpl@gmail.com>2021-09-18 20:31:47 +0200
commit9319d0c48c21851eb9e84993307dd829cfdc567a (patch)
treee762fe00ed96f8cd0db82f40df66b225a41a0daa
parent91025a8025826c73b126db69dcdd9a1bfee4bb2a (diff)
Missing comma...
-rw-r--r--README.md2
-rw-r--r--src/btop.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index f7443ab..6a9e6c9 100644
--- a/README.md
+++ b/README.md
@@ -484,7 +484,7 @@ optional arguments:
-lc, --low-color disable truecolor, converts 24-bit colors to 256-color
-t, --tty_on force (ON) tty mode, max 16 colors and tty friendly graph symbols
+t, --tty_off force (OFF) tty mode
- -p --preset <id> start with preset, integer value between 0-9
+ -p, --preset <id> start with preset, integer value between 0-9
--utf-force force start even if no UTF-8 locale was detected
--debug start in DEBUG mode: shows microsecond timer for information collect
and screen draw functions and sets loglevel to DEBUG
diff --git a/src/btop.cpp b/src/btop.cpp
index f364ac7..cdc0a4c 100644
--- a/src/btop.cpp
+++ b/src/btop.cpp
@@ -100,7 +100,7 @@ void argumentParser(const int& argc, char **argv) {
<< " -lc, --low-color disable truecolor, converts 24-bit colors to 256-color\n"
<< " -t, --tty_on force (ON) tty mode, max 16 colors and tty friendly graph symbols\n"
<< " +t, --tty_off force (OFF) tty mode\n"
- << " -p --preset <id> start with preset, integer value between 0-9\n"
+ << " -p, --preset <id> start with preset, integer value between 0-9\n"
<< " --utf-force force start even if no UTF-8 locale was detected\n"
<< " --debug start in DEBUG mode: shows microsecond timer for information collect\n"
<< " and screen draw functions and sets loglevel to DEBUG\n"