This commit is contained in:
Zeev Diukman 2023-09-22 08:20:01 +03:00
commit 7015537a93
3 changed files with 22 additions and 0 deletions

0
.gitignore vendored Normal file
View file

1
README.md Normal file
View file

@ -0,0 +1 @@
# zrdp

21
rdp.sh Executable file
View 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