change description
This commit is contained in:
parent
a43068569d
commit
33fbf42908
2 changed files with 10 additions and 10 deletions
18
bin/rzr
18
bin/rzr
|
|
@ -181,17 +181,9 @@ if __name__ == "__main__":
|
|||
# Print logo
|
||||
print_logo()
|
||||
|
||||
# Create device manager
|
||||
try:
|
||||
device_manager = DeviceManager()
|
||||
except Exception as e:
|
||||
error("failed to load device manager: {}".format(e))
|
||||
print("Is the openrazer-daemon running?")
|
||||
exit(1)
|
||||
|
||||
# Parse arguments
|
||||
parser = argparse.ArgumentParser(
|
||||
description="Set color profiles of your Razer devices.",
|
||||
description="A simple command line frontend for OpenRazer.",
|
||||
formatter_class=RawTextHelpFormatter,
|
||||
)
|
||||
parser.add_argument(
|
||||
|
|
@ -219,6 +211,14 @@ if __name__ == "__main__":
|
|||
parser.print_help()
|
||||
exit(0)
|
||||
|
||||
# Create device manager
|
||||
try:
|
||||
device_manager = DeviceManager()
|
||||
except Exception as e:
|
||||
error("failed to load device manager: {}".format(e))
|
||||
print("Is the openrazer-daemon running?")
|
||||
exit(1)
|
||||
|
||||
# Check if directories exist
|
||||
directories_available = True
|
||||
lightmap_directory = args.lightmap_directory
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue