Native RDP server for Hyprland. Connect to your Hyprland desktop from any RDP client (Windows Remote Desktop, FreeRDP, etc.).
- H.264/EGFX — Hardware-accelerated encoding via VA-API (Intel/AMD), with OpenH264 software fallback
- Screen capture —
wlr-screencopy-v1andext-image-copy-capture-v1protocols - Audio — PipeWire audio forwarding via RDPSND
- Clipboard — Bidirectional text and image clipboard sync
- Input — Full keyboard and mouse support via virtual keyboard/pointer protocols
- TLS — Auto-generated self-signed certificates, or bring your own
- Config file —
~/.config/hypr-rdp/config.toml
# Latest git (recommended)
yay -S hypr-rdp-git
# Stable release
yay -S hypr-rdpDownload from GitHub Releases:
tar xzf hypr-rdp-v*.tar.gz
sudo install -Dm755 hypr-rdp /usr/local/bin/hypr-rdpRuntime dependencies: libva, pipewire, libxkbcommon
Requirements:
- Rust 1.75+
libva,pipewire,libxkbcommon(development headers)
git clone https://github.com/MuNeNICK/hypr-rdp.git
cd hypr-rdp
cargo build --release
sudo install -Dm755 target/release/hypr-rdp /usr/local/bin/hypr-rdpSoftware-only build (no VA-API dependency):
cargo build --release --no-default-featuresRequires Hyprland 0.54+ and optionally a VA-API driver (intel-media-driver for Intel, libva-mesa-driver for AMD) for hardware encoding.
# Basic (auto-generates TLS cert, binds to 127.0.0.1:3389)
hypr-rdp -u <username> -p <password>
# Bind to all interfaces
hypr-rdp -u user -p pass --bind 0.0.0.0:3389
# Custom resolution and framerate
hypr-rdp -u user -p pass --resolution 2560x1440 --fps 60
# Capture a specific output
hypr-rdp -u user -p pass --output DP-1
# Use ext-image-copy-capture protocol
hypr-rdp -u user -p pass --capture_mode ext~/.config/hypr-rdp/config.toml:
bind = "0.0.0.0:3389"
username = "user"
password = "pass"
resolution = "1920x1080"
capture_mode = "wlr"
bitrate = 5000000
quality = 23
fps = 30
# output = "DP-1"CLI arguments override config file values.
| Flag | Description | Default |
|---|---|---|
--bind, -b |
Bind address | 127.0.0.1:3389 |
--cert |
TLS certificate (PEM) | Auto-generated |
--key |
TLS private key (PEM) | Auto-generated |
-u, --username |
RDP username | (none) |
-p, --password |
RDP password | (none) |
--resolution, -r |
Session resolution | 1920x1080 |
--capture_mode |
wlr or ext |
wlr |
--bitrate |
H.264 bitrate (bps) | 5000000 |
--quality |
H.264 quality (0-51) | 23 |
--fps |
Max framerate | 30 |
--output |
Specific output name | (headless) |
--config |
Config file path | ~/.config/hypr-rdp/config.toml |
MIT