mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-08-01 21:58:49 +00:00
Accept Cmd as shortcut modifier
In addition to (left) Alt, also accept (left) Cmd. This is especially convenient for macOS users.
This commit is contained in:
parent
a90b08ceb3
commit
060d91e4ce
4 changed files with 8 additions and 7 deletions
|
@ -572,7 +572,7 @@ Also see [issue #14].
|
||||||
## Shortcuts
|
## Shortcuts
|
||||||
|
|
||||||
In the following list, `MOD` is the shortcut modifier. By default, it's (left)
|
In the following list, `MOD` is the shortcut modifier. By default, it's (left)
|
||||||
`Alt`.
|
`Alt` or (left) `Cmd`.
|
||||||
|
|
||||||
It can be changed using `--shortcut-mod`. Possible keys are `lctrl`, `rctrl`,
|
It can be changed using `--shortcut-mod`. Possible keys are `lctrl`, `rctrl`,
|
||||||
`lalt`, `ralt`, `lcmd` and `rcmd`. For example:
|
`lalt`, `ralt`, `lcmd` and `rcmd`. For example:
|
||||||
|
|
|
@ -157,7 +157,7 @@ A shortcut can consist in several keys, separated by '+'. Several shortcuts can
|
||||||
|
|
||||||
For example, to use either LCtrl+LAlt or LCmd for scrcpy shortcuts, pass "lctrl+lalt,lcmd".
|
For example, to use either LCtrl+LAlt or LCmd for scrcpy shortcuts, pass "lctrl+lalt,lcmd".
|
||||||
|
|
||||||
Default is "lalt" (left-Alt).
|
Default is "lalt,lcmd" (left-Alt or left-Cmd).
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
.B \-S, \-\-turn\-screen\-off
|
.B \-S, \-\-turn\-screen\-off
|
||||||
|
@ -218,7 +218,7 @@ Default is 0 (automatic).\n
|
||||||
.SH SHORTCUTS
|
.SH SHORTCUTS
|
||||||
|
|
||||||
In the following list, MOD is the shortcut modifier. By default, it's (left)
|
In the following list, MOD is the shortcut modifier. By default, it's (left)
|
||||||
Alt, but it can be configured by \-\-shortcut-mod.
|
Alt or (left) Cmd, but it can be configured by \-\-shortcut-mod.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
.B MOD+f
|
.B MOD+f
|
||||||
|
|
|
@ -149,7 +149,7 @@ scrcpy_print_usage(const char *arg0) {
|
||||||
" For example, to use either LCtrl+LAlt or LCmd for scrcpy\n"
|
" For example, to use either LCtrl+LAlt or LCmd for scrcpy\n"
|
||||||
" shortcuts, pass \"lctrl+lalt,lcmd\".\n"
|
" shortcuts, pass \"lctrl+lalt,lcmd\".\n"
|
||||||
"\n"
|
"\n"
|
||||||
" Default is \"lalt\" (left-Alt).\n"
|
" Default is \"lalt,lcmd\" (left-Alt or left-Cmd).\n"
|
||||||
"\n"
|
"\n"
|
||||||
" -S, --turn-screen-off\n"
|
" -S, --turn-screen-off\n"
|
||||||
" Turn the device screen off immediately.\n"
|
" Turn the device screen off immediately.\n"
|
||||||
|
@ -199,7 +199,8 @@ scrcpy_print_usage(const char *arg0) {
|
||||||
"Shortcuts:\n"
|
"Shortcuts:\n"
|
||||||
"\n"
|
"\n"
|
||||||
" In the following list, MOD is the shortcut modifier. By default,\n"
|
" In the following list, MOD is the shortcut modifier. By default,\n"
|
||||||
" it's (left) Alt, but it can be configured by --shortcut-mod.\n"
|
" it's (left) Alt or (left) Cmd, but it can be configured by\n"
|
||||||
|
" --shortcut-mod.\n"
|
||||||
"\n"
|
"\n"
|
||||||
" MOD+f\n"
|
" MOD+f\n"
|
||||||
" Switch fullscreen mode\n"
|
" Switch fullscreen mode\n"
|
||||||
|
|
|
@ -95,8 +95,8 @@ struct scrcpy_options {
|
||||||
.last = DEFAULT_LOCAL_PORT_RANGE_LAST, \
|
.last = DEFAULT_LOCAL_PORT_RANGE_LAST, \
|
||||||
}, \
|
}, \
|
||||||
.shortcut_mods = { \
|
.shortcut_mods = { \
|
||||||
.data = {SC_MOD_LALT}, \
|
.data = {SC_MOD_LALT, SC_MOD_LCMD}, \
|
||||||
.count = 1, \
|
.count = 2, \
|
||||||
}, \
|
}, \
|
||||||
.max_size = DEFAULT_MAX_SIZE, \
|
.max_size = DEFAULT_MAX_SIZE, \
|
||||||
.bit_rate = DEFAULT_BIT_RATE, \
|
.bit_rate = DEFAULT_BIT_RATE, \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue