optimize output

This commit is contained in:
Denis Lehmann 2021-04-21 21:55:05 +02:00
parent d37fda01e8
commit 0bd290a085

View file

@ -13,8 +13,7 @@ import toml
def print_greeter():
logo = """
_ _ _
logo = """ _ _ _
/\ \ /\ \ /\ \
/ \ \ / \ \ / \ \
/ /\ \ \ __/ /\ \ \ / /\ \ \
@ -200,19 +199,19 @@ if __name__ == "__main__":
metavar="COMMAND",
nargs="?",
default="list-devices",
help="One of the following:\n list-devices - list devices (default)\n list-lightmaps - list lightmaps\n list-profiles - list available profiles\n iterate-lights - iterate lights of all devices\n <PROFILE> - apply the given profile",
help="one of the following:\n list-devices - list available devices (default)\n list-lightmaps - list available lightmaps\n list-profiles - list available profiles\n iterate-lights - iterate though all lights of all devices\n <PROFILE> - apply the given profile",
)
parser.add_argument(
"-ld",
"--lightmap-directory",
default="{}/.config/rzr/lightmaps".format(Path.home()),
help="Path to directory with lightmaps (default: ~/.config/rzr/lightmaps)",
help="path to directory with lightmaps (default: ~/.config/rzr/lightmaps)",
)
parser.add_argument(
"-pd",
"--profile-directory",
default="{}/.config/rzr/profiles".format(Path.home()),
help="Path to directory with profiles (default: ~/.config/rzr/profiles)",
help="path to directory with profiles (default: ~/.config/rzr/profiles)",
)
args = parser.parse_args()