diff options
author | Maxim Devaev <[email protected]> | 2022-06-11 13:56:01 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-06-11 13:56:01 +0300 |
commit | 28fa6c4991b3ccb61be748556b2570aa4e449173 (patch) | |
tree | cfb8fc75656e66f315a8dedf2c40f5ad3b3b6d73 /kvmd/apps/edidconf | |
parent | 326d51e6a385a9368955dd885537b968932f3fbf (diff) |
renamed --edid-file to the --edid
Diffstat (limited to 'kvmd/apps/edidconf')
-rw-r--r-- | kvmd/apps/edidconf/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kvmd/apps/edidconf/__init__.py b/kvmd/apps/edidconf/__init__.py index a9993018..a5ae885f 100644 --- a/kvmd/apps/edidconf/__init__.py +++ b/kvmd/apps/edidconf/__init__.py @@ -191,14 +191,14 @@ def main(argv: Optional[List[str]]=None) -> None: # pylint: disable=too-many-br description="A simple and primitive KVMD EDID editor", # parents=[parent_parser], ) - parser.add_argument("-f", "--edid-file", dest="edid_path", default="/etc/kvmd/tc358743-edid.hex", + parser.add_argument("-f", "--edid", dest="edid_path", default="/etc/kvmd/tc358743-edid.hex", help="The hex/bin EDID file path", metavar="<file>") parser.add_argument("--export-hex", - help="Export [--edid-file] to the new file as a hex text", metavar="<file>") + help="Export [--edid] file to the new file as a hex text", metavar="<file>") parser.add_argument("--export-bin", - help="Export [--edid-file] to the new file as a bin data", metavar="<file>") + help="Export [--edid] file to the new file as a bin data", metavar="<file>") parser.add_argument("--import", dest="imp", - help="Import the specified bin/hex EDID to the [--edid-file] as a hex text", metavar="<file>") + help="Import the specified bin/hex EDID to the [--edid] file as a hex text", metavar="<file>") parser.add_argument("--set-audio", type=valid_bool, help="Enable or disable basic audio", metavar="<yes|no>") parser.add_argument("--set-mfc-id", @@ -212,7 +212,7 @@ def main(argv: Optional[List[str]]=None) -> None: # pylint: disable=too-many-br parser.add_argument("--clear", action="store_true", help="Clear the EDID in the [--device]") parser.add_argument("--apply", action="store_true", - help="Apply [--edid-file] on the [--device]") + help="Apply [--edid] on the [--device]") parser.add_argument("--device", dest="device_path", default="/dev/kvmd-video", help="The video device", metavar="<device>") options = parser.parse_args(argv[1:]) |