From 9b17cf619e1aa9a6d317fa63c51bb5114e24199b Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Mon, 31 Oct 2016 17:29:32 +0100 Subject: [PATCH] [main] Fix a small typo in the help text --- i3bumblebee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3bumblebee b/i3bumblebee index d4dd50d..80e13ee 100755 --- a/i3bumblebee +++ b/i3bumblebee @@ -44,7 +44,7 @@ def main(): parser = argparse.ArgumentParser(description="display system data in the i3bar") parser.add_argument("-m", "--modules", nargs="+", help="List of modules to load. The order of the list determines their order in the i3bar (from left to right)") parser.add_argument("-l", "--list", action="store_true", help="List all available modules and themes") - parser.add_argument("-t", "--theme", help="Specify which theme to use for drawing the modulemoduless") + parser.add_argument("-t", "--theme", help="Specify which theme to use for drawing the modules") parser.add_argument("-i", "--interval", help="Specify the update interval", default=1, type=int) parser.add_argument("-s", "--split", help="Specify string to use for splitting modules and their arguments", default="::")