From 0941898c02d5621212ac68344dcfb8f86e999e42 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Sun, 31 Jul 2016 22:03:18 -0400 Subject: [PATCH] Document --powerline-left --- README.rst | 6 ++++-- common/main.cc | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) 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"