diff --git a/README.rst b/README.rst index 81eabcd..c17d773 100644 --- a/README.rst +++ b/README.rst @@ -118,8 +118,10 @@ The full usage:: Prints this help message -c, --colors Use tmux colors in output - --powerline-right - Use powerline symbols throughout the output, DO NOT reset background color at the end, enables --colors + -p, --powerline-left + Use powerline left symbols throughout the output, DO NOT reset background color at the end, enables --colors + -q, --powerline-right + Use powerline right symbols throughout the output, DO NOT reset background color at the end, enables --colors -i , --interval Set tmux status refresh interval in seconds. Default: 1 second -g , --graph-lines diff --git a/common/main.cc b/common/main.cc index 0a3561f..0e9ad39 100644 --- a/common/main.cc +++ b/common/main.cc @@ -116,8 +116,10 @@ void print_help() << "\t Prints this help message\n" << "-c, --colors\n" << "\tUse tmux colors in output\n" - << "-p, --powerline-right\n" - << "\tUse powerline symbols throughout the output, DO NOT reset background color at the end, enables --colors\n" + << "-p, --powerline-left\n" + << "\tUse powerline left symbols throughout the output, DO NOT reset background color at the end, enables --colors\n" + << "-q, --powerline-right\n" + << "\tUse powerline right symbols throughout the output, DO NOT reset background color at the end, enables --colors\n" << "-i , --interval \n" << "\tSet tmux status refresh interval in seconds. Default: 1 second\n" << "-g , --graph-lines \n"