Last active
March 16, 2025 08:46
-
-
Save kamarton/a8e5595b4de0a2e44c4c91b39c262718 to your computer and use it in GitHub Desktop.
RDP connection with multiple monitors - xfreerdp linux cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
USERNAME=<username> | |
HOST=<host> | |
xfreerdp \ | |
/monitors:0,1 \ # miltiple monitors with order | |
/multimon \ # multiple monitors | |
/u:$USERNAME \ # RDP username | |
/v:$HOST # RDP host | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment