aboutsummaryrefslogtreecommitdiffstats
path: root/src/c_exec.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-05-07 20:20:20 +0200
committerJoe <rbo@gmx.us>2024-05-07 20:20:20 +0200
commit53664b1a4b62adcd744685c703c5050baaa02a08 (patch)
tree32213946dbcd2457f7fea7c0a46fa1f53fc0eef3 /src/c_exec.go
parenttext change (diff)
downloadhardflip-53664b1a4b62adcd744685c703c5050baaa02a08.tar.gz
hardflip-53664b1a4b62adcd744685c703c5050baaa02a08.tar.bz2
hardflip-53664b1a4b62adcd744685c703c5050baaa02a08.tar.xz
hardflip-53664b1a4b62adcd744685c703c5050baaa02a08.tar.zst
hardflip-53664b1a4b62adcd744685c703c5050baaa02a08.zip
new opts
Diffstat (limited to '')
-rw-r--r--src/c_exec.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/c_exec.go b/src/c_exec.go
index 6829d94..5afca7a 100644
--- a/src/c_exec.go
+++ b/src/c_exec.go
@@ -146,6 +146,12 @@ func c_format_rdp(host *HostNode, pass string) ([]string, []string) {
if host.Dynamic == true {
cmd_fmt = append(cmd_fmt, "/dynamic-resolution")
}
+ if host.FullScr == true {
+ cmd_fmt = append(cmd_fmt, "/f")
+ }
+ if host.MultiMon == true {
+ cmd_fmt = append(cmd_fmt, "/multimon:force")
+ }
if host.Drive != nil {
for share, path := range host.Drive {
cmd_fmt = append(cmd_fmt, "/drive:" + share + "," + path)