summaryrefslogtreecommitdiff
path: root/kvmd
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd')
-rw-r--r--kvmd/apps/edidconf/__init__.py10
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:])