diff --git a/bin/rzr b/bin/rzr index e1df5b3..1c3f7ed 100644 --- a/bin/rzr +++ b/bin/rzr @@ -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 - 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 - 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()