Files
docker-xubuntu/xfreerdp.sh
Héctor Molinero Fernández 2cfd7d30e9 Added xfreerdp script
2020-12-24 13:21:50 +01:00

20 lines
415 B
Bash
Executable File

#!/bin/sh
set -eu
export LC_ALL=C
RDP_HOST=127.0.0.1
RDP_PORT=3389
RDP_USER=guest
RDP_PASSWORD=password
exec xfreerdp \
/v:"${RDP_HOST:?}":"${RDP_PORT:?}" \
/u:"${RDP_USER:?}" /p:"${RDP_PASSWORD:?}" \
/log-level:INFO /cert:ignore \
/gfx:RFX +gfx-progressive /w:1600 /h:900 \
/audio-mode:0 /sound:sys:pulse,rate:44100 \
/microphone:sys:pulse,rate:44100 \
+clipboard +home-drive \
-compression -encryption