forked from ahurac/dotfiles
Réglage dans weston-rdp
This commit is contained in:
parent
4f04440059
commit
475adb1bdd
1 changed files with 5 additions and 7 deletions
|
@ -7,7 +7,6 @@ rdp_d="${HOME}/.rdp"
|
||||||
hostname="$(hostname)"
|
hostname="$(hostname)"
|
||||||
crt="${rdp_d}/${hostname}.crt"
|
crt="${rdp_d}/${hostname}.crt"
|
||||||
key="${rdp_d}/${hostname}.key"
|
key="${rdp_d}/${hostname}.key"
|
||||||
socket=wayland-1
|
|
||||||
|
|
||||||
# Arguments
|
# Arguments
|
||||||
width="${1:-1920}" ; shift
|
width="${1:-1920}" ; shift
|
||||||
|
@ -17,12 +16,11 @@ height="${1:-1080}"; shift
|
||||||
weston_com=(
|
weston_com=(
|
||||||
"$weston"
|
"$weston"
|
||||||
"$@"
|
"$@"
|
||||||
"--backend=${backend}"
|
--backend="$backend"
|
||||||
"--rdp-tls-cert=${crt}"
|
--rdp-tls-cert="$crt"
|
||||||
"--rdp-tls-key=${key}"
|
--rdp-tls-key="$key"
|
||||||
"--width=${width}"
|
--width="$width"
|
||||||
"--height=${height}"
|
--height="$height"
|
||||||
"--socket=${socket}"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Debug
|
# Debug
|
||||||
|
|
Loading…
Reference in a new issue