gitextract_cqulqu0f/ ├── .clang-format ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── build.yml ├── .gitignore ├── CONTRIBUTORS ├── Cargo.toml ├── LICENSE ├── Readme.md ├── build.rs ├── build_in_local_container.sh ├── compile_flags.txt ├── deps/ │ ├── awk.patch │ ├── build.sh │ ├── clean.sh │ ├── clean_all.sh │ ├── command_limit.patch │ ├── download.sh │ ├── ffmpeg.sh │ ├── hashes.sh │ ├── libva.sh │ ├── nv-codec-headers.sh │ ├── refs.sh │ ├── update_hashes.sh │ └── x264.sh ├── docker/ │ ├── Dockerfile │ └── Dockerfile_alpine ├── docker_build.sh ├── lib/ │ ├── encode_video.c │ ├── error.c │ ├── error.h │ ├── linux/ │ │ ├── uinput.c │ │ ├── uinput_info.md │ │ ├── xcapture.c │ │ ├── xhelper.c │ │ └── xhelper.h │ ├── log.c │ └── log.h ├── src/ │ ├── capturable/ │ │ ├── captrs_capture.rs │ │ ├── core_graphics.rs │ │ ├── mod.rs │ │ ├── pipewire.rs │ │ ├── remote_desktop_dbus.rs │ │ ├── testsrc.rs │ │ ├── win_ctx.rs │ │ └── x11.rs │ ├── cerror.rs │ ├── config.rs │ ├── gui.rs │ ├── input/ │ │ ├── autopilot_device.rs │ │ ├── autopilot_device_win.rs │ │ ├── device.rs │ │ ├── mod.rs │ │ ├── uinput_device.rs │ │ └── uinput_keys.rs │ ├── log.rs │ ├── main.rs │ ├── protocol.rs │ ├── strings/ │ │ └── uinput_error.txt │ ├── video.rs │ ├── web.rs │ ├── websocket.rs │ └── weylus.rs ├── ts/ │ └── lib.ts ├── tsconfig.json ├── weylus.desktop ├── weylus_tls.sh └── www/ ├── static/ │ ├── access_code.html │ └── style.css └── templates/ └── index.html