X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=orb_utils.py;h=e6b06a6c744ce9d91eef76268862b08a62e89a32;hb=e46158e49121b8a955bb07b73f5bcf9928b79c90;hp=6a12b6f7b1970e92d0697b3633ac35db72895555;hpb=31c81f6539969a5eba864d3305f9fb7bf716a367;p=python_utils.git diff --git a/orb_utils.py b/orb_utils.py index 6a12b6f..e6b06a6 100644 --- a/orb_utils.py +++ b/orb_utils.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +# © Copyright 2021-2022, Scott Gasch + """Utilities related to changing the orb's color.""" import os @@ -27,6 +29,7 @@ parser.add_argument( def make_orb(color: str) -> None: + """Make the orb on my desk a particular color.""" user_machine = config.config['orb_utils_user_machine'] orbfile_path = config.config['orb_utils_file_location'] os.system(f"ssh {user_machine} 'echo \"{color}\" > {orbfile_path}'")