-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: What should i use to make a clipboard manager? #42
Comments
Hey, what you want for a clipboard manager is something like
Note the: |
Thanks, i'm not very familiar with wayland but i hope to learn. This is a reason why i want to make a clipboard manager. Good to know for Is the process I listed above is correct ? This will help me to get in the right direction |
So if you take a look in
This version on the right is the v2 that is needed for the primary clipboard. Increasing that version must be backwards-compatible to an extent. There's also the literal _v1 in the name of the interface. That's for when the protocol needs to make a backwards-incompatible change, then it will bump that "version" (effectively it will be a completely different protocol then) and reset the number version back to 1.
Yeah, that is more or less correct. |
After looking the api for a while, it's still not clear to me what should i use.
I think what i need is the
serve
function. But how can i know when there are events to serve?From what i understand, this is the process:
is this correct?
Also, another thing that triggered me is
But i'm not seeing any v2 here
Thank is advance for any responce
The text was updated successfully, but these errors were encountered: