Overview
Comment: | Make sendkey command send several keys at once. Updated list of keys in the documentation mentioned all alphanumeric keys |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9e38c1fca98e4bce2de66a33ada7d500 |
User & Date: | vitus on 2019-10-04 08:37:37 |
Other Links: | manifest | tags |
Context
2019-10-04
| ||
09:26 | Documented snapshot-related subcommands Make vws snapshots work on running vms Improved a bit some help messages check-in: 95a3d4e3ed user: vitus tags: trunk | |
08:37 | Make sendkey command send several keys at once. Updated list of keys in the documentation mentioned all alphanumeric keys check-in: 9e38c1fca9 user: vitus tags: trunk | |
07:39 | Fixed parsing of device list in cdrom command check-in: 416aa92d0a user: vitus tags: trunk | |
Changes
Modified vws from [73ceee4773] to [750dc8fdb8].
︙ | |||
544 545 546 547 548 549 550 | 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | + + + - + | print("No sound recording in progress", file=sys.stderr) sys.exit(1) else: print(send_command(options.sock, "stopcapture " + match.group(1))) def cmd_sendkey(options): """ vws sendkey """ for keyspec in options.keyspec: if keyspec == " ": keyspec="spc" |
︙ | |||
1018 1019 1020 1021 1022 1023 1024 | 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 | - + + | # Screenshoits and recording p = new_command(cmds, 'screenshot', help='take a screenshot') p.add_argument('filename', help='PPM image filename to write screenshot to') p = new_command(cmds, 'record', help='Record audio output from VM') p.add_argument('filename', help='wav file to record autdio to') new_command(cmds, 'stoprecord', help='stop recording audio') p = new_command(cmds, 'sendkey', help='Send a keystroke to VM') |
︙ |
Modified vws.mkd from [423c253021] to [3ea09a860d].
︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - + | **vws screenshot** *name* *filename.ppm* **vws record** *name* *filename.wav* **vws stoprecord** *name* |
︙ | |||
365 366 367 368 369 370 371 | 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 | - + - + + + + + + + + + - - + + - - - - - + + + + - - + - + + | Lists available virtual machines. If **--state** option is given, prints out state (running or stopped) type (private or shared) spice URI (if machine is running), mac and IP address. Pattern is shell-style wildcard which limits machines to be shown. Don't forget to quote pattern from shell. It should be expanded. **--usb** option lists USB devices connected to the virtual machine using **vws usb** command. |
︙ |