Replies: 3 comments 15 replies
-
Another idea of possible implementation is showing which wayland process is capturing the Window with a visual indicator. |
Beta Was this translation helpful? Give feedback.
-
Yes, the API is available, and I'll elaborate on it in a new tutorial chapter. It's as straightforward as this: void Output::paintGL()
{
for (LScreenshotRequest *req : screenshotRequests())
req->accept(true); // Use false or ignore to deny
} Additionally, each |
Beta Was this translation helpful? Give feedback.
-
There is this protocol currently being developed, which addresses many issues present in |
Beta Was this translation helpful? Give feedback.
-
The idea I have is simple, allow compositor to implement handlers for wlr-screencopy to allow compositors to implement a permission system, an example of possible implementation for a compositor could be to only send a pitch black buffer unless permission to capture screen is granted via a dialog box.
Well having something for that in the documentation at least would be cool.
Beta Was this translation helpful? Give feedback.
All reactions