|
|
@ -115,10 +115,11 @@ def main(): |
|
|
|
parser.add_argument('--key', type=str, metavar='PATH', help="ssh private key") |
|
|
|
parser.add_argument('--key', type=str, metavar='PATH', help="ssh private key") |
|
|
|
parser.add_argument('--password', default=None, type=str, help="ssh password") |
|
|
|
parser.add_argument('--password', default=None, type=str, help="ssh password") |
|
|
|
parser.add_argument('--address', default='10.11.99.1', type=str, help="device address") |
|
|
|
parser.add_argument('--address', default='10.11.99.1', type=str, help="device address") |
|
|
|
parser.add_argument('--mode', default='fill', choices=['fit', 'fill', 'stretch'], help="""Scale setting. |
|
|
|
parser.add_argument('--mode', default='fill', choices=['fit', 'fill', 'stretch', 'cool'], help="""Scale setting. |
|
|
|
Fit (default): take up the entire tablet, but not necessarily the entire monitor. |
|
|
|
Fit (default): take up the entire tablet, but not necessarily the entire monitor. |
|
|
|
Fill: take up the entire monitor, but not necessarily the entire tablet. |
|
|
|
Fill: take up the entire monitor, but not necessarily the entire tablet. |
|
|
|
Stretch: take up both the entire tablet and monitor, but don't maintain aspect ratio.""") |
|
|
|
Stretch: take up both the entire tablet and monitor, but don't maintain aspect ratio. |
|
|
|
|
|
|
|
Cool: fit the entire monitor on the tablet, ensure 1:1 aspect ratio on both.""") |
|
|
|
parser.add_argument('--orientation', default='right', choices=['top', 'left', 'right', 'bottom'], help="position of tablet buttons") |
|
|
|
parser.add_argument('--orientation', default='right', choices=['top', 'left', 'right', 'bottom'], help="position of tablet buttons") |
|
|
|
parser.add_argument('--monitor', default=0, type=int, metavar='NUM', help="monitor to output to") |
|
|
|
parser.add_argument('--monitor', default=0, type=int, metavar='NUM', help="monitor to output to") |
|
|
|
parser.add_argument('--region', action='store_true', default=False, help="Use a GUI to position the output area. Overrides --monitor") |
|
|
|
parser.add_argument('--region', action='store_true', default=False, help="Use a GUI to position the output area. Overrides --monitor") |
|
|
|