Originally posted by bradcarnage on Discord, 25 February 2025.
Pasting emulates typing. If you have any issues you can use AutoHotkey for windows, xdotool on Linux, or an equivalent on macOS if the paste function does not work
Originally posted by bradcarnage on Discord, 25 February 2025.
There is no guest OS driver support for clipboard synchronization and there probably never will be. Unless you’re planning to add text recognition technology to “read” the text from the screen or something crazy to the desktop app
Originally posted by Billiooo on Discord, 25 February 2025.
We can’t actually sync clipboards between the host and the target, so when you copy text on the host, our software is basically just typing it out on the target. Because of that, hitting cmd+v on a Mac host won’t directly paste into the target. I get that this feels kind of clunky and not intuitive. I’ll talk to our dev team about maybe adding a feature or button in the host app that, once you turn it on, could override cmd+v locally and trigger the simulated ‘paste’ text to the target.
Originally posted by Billiooo on Discord, 25 February 2025.
Immediately paste the text when you hit cmd+V. The downside here is that if there’s any hiccup with the macOS clipboard, the software might “type” the text incorrectly on the target.
Originally posted by Billiooo on Discord, 25 February 2025.
Introduce a paste text box that lets you preview and style the text before triggering the simulated typing to the target. For example, the PikVM web app uses a similar step before pasting.
Originally posted by bradcarnage on Discord, 25 February 2025.
I think an alternative would be to “by default” hook into the cmd+v. Also by default it would “always prompt”. (Can also be disabled or potentially even remapped) Then, it will show a popup dialogue box.
"
Originally posted by bradcarnage on Discord, 25 February 2025.
or potentially send a cmd/ctrl “unset” or “key_up” before pasting… That would be the hack I’d use LOL (could cause a ghost key tap of Ctrl/cmd on the target but better than “holding” it down)