commit
This commit is contained in:
commit
7015537a93
3 changed files with 22 additions and 0 deletions
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
1
README.md
Normal file
1
README.md
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
# zrdp
|
||||||
21
rdp.sh
Executable file
21
rdp.sh
Executable file
|
|
@ -0,0 +1,21 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#Z freerdp script
|
||||||
|
|
||||||
|
args="
|
||||||
|
/v:192.168.2.2
|
||||||
|
/u:z
|
||||||
|
/dynamic-resolution
|
||||||
|
/scale-device:100
|
||||||
|
/scale-desktop:175
|
||||||
|
/disp
|
||||||
|
/cert:ignore
|
||||||
|
+clipboard
|
||||||
|
+grab-keyboard
|
||||||
|
/floatbar:sticky:on
|
||||||
|
"
|
||||||
|
echo $args
|
||||||
|
#read -p 'Host: ' host
|
||||||
|
#read -p 'Username: ' userName
|
||||||
|
read -sp 'Password: ' password
|
||||||
|
#xfreerdp /u:$userName /p:$password /v:$host $args
|
||||||
|
xfreerdp /p:$password $args
|
||||||
Loading…
Reference in a new issue