From 73bce4ebe068e9bf32d61f303066c10a69f637e6 Mon Sep 17 00:00:00 2001 From: cryzed Date: Sat, 20 Jan 2018 19:43:10 +0100 Subject: [PATCH] Remove unused CLI option and correct help text --- amby/cli.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/amby/cli.py b/amby/cli.py index a023367..3b48e55 100644 --- a/amby/cli.py +++ b/amby/cli.py @@ -26,12 +26,9 @@ '--interval', '-i', type=float, default=0.1, help='The interval to wait before calculating and setting the ambient color again') argument_parser.add_argument('--run-once', '-o', action='store_true', help='Set the ambient color once and exit') -argument_parser.add_argument( - '--luminance-percentage', '-l', type=float, default='10', - help='Specify which percentage of brightest colors to average in luminance mode') argument_parser.add_argument( '--change-brightness', '-b', action='store_true', - help='Adjust brightness of lights based on the overall relative luminance of the specified screen') + help='Adjust brightness of lights based on the luminance of the calculated ambient color') argument_parser.add_argument( '--min-brightness', '-m', type=float, default=0, help='Minimum brightness in percent') argument_parser.add_argument(