summaryrefslogtreecommitdiff
path: root/ctbtw.py
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2026-05-02 01:10:02 +0200
committerJavier <dev.git@javispedro.com>2026-05-02 01:10:02 +0200
commitc2413b124a2a16c7d7e8dac0fc2af9881715c4c0 (patch)
tree58710136cd0976cbd1bd384bc308028a8a2f1dab /ctbtw.py
parent39abc1e56af5a9333bba53a72ecf7e15b93d9acb (diff)
downloadctbtw-c2413b124a2a16c7d7e8dac0fc2af9881715c4c0.tar.gz
ctbtw-c2413b124a2a16c7d7e8dac0fc2af9881715c4c0.zip
and replace -s with more logical -l for list paired devicesHEADmaster
Diffstat (limited to 'ctbtw.py')
-rwxr-xr-xctbtw.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctbtw.py b/ctbtw.py
index 77d4601..92ac6fd 100755
--- a/ctbtw.py
+++ b/ctbtw.py
@@ -651,7 +651,7 @@ if __name__ == '__main__':
parser.add_argument('--verbose', '-v', action='store_true', help="print protocol traces")
actions = parser.add_mutually_exclusive_group()
actions.add_argument('--aptx', '-x', action='store', choices=["l", "q"], help="prefer (L)atency or (Q)uality for aptX adaptative")
- actions.add_argument('--devices', '-s', action='store_true', help="list currently paired devices")
+ actions.add_argument('--devices', '-l', action='store_true', help="list currently paired devices")
actions.add_argument('--connect', '-c', metavar="DEV", action='store', help="connect to (already paired) device with given name/address")
actions.add_argument('--disconnect', '-d', metavar="D", action='store', nargs='?', const='*', help="disconnect from device with given name/address, or current device if no %(metavar)s")
actions.add_argument('--pair', '-p', nargs='?', metavar="ADDR", const="*", action='store', help='pair with specific bluetooth address, or any device if no %(metavar)s specified')