Jackson Huff
Jackson Huff
@dgudim Looks like this might actually be a libc issue since the stacktrace puts the issue there. Does it still happen all these months later?
This is because 0.8.2 added asynchronous clipboard syncing, where CB will refresh every 2 seconds in the background to grab any changed desktop clipboard contents. Unfortunately, because you're using Ubuntu...
I can see if anyone would like to make a PR to add the special Wayland code before closing this, because this is a recurring issue on Wayland
> can `cb` maybe use `wl-copy` and `wl-paste` to sync the clipboards? Actually, this may be easily possible in a future version by adding a custom script hook to each...
@MaddyGuthridge There is unfortunately no concrete fix, but the following will at least get rid of the symptom: - turn off Wayland with `NO_WAYLAND=1` - switch to a different window...
I think `NO_WAYLAND=1` is actually what you'd use when building Clipboard to disable the Wayland library requirement, so it doesn't apply during runtime. Now that I look at it, `CLIPBOARD_NO_GUI=1`...
Sorry for the super long wait, but next on my todo list is the script hook feature! Here's a preview of what it might look like: 1. Set up the...
@MaddyGuthridge do you mind testing out the latest commit? The new `script` action is almost ready and it should work with the instructions in my previous comment (try doing something...
@nhosama Not getting this in Fish:  I also can't find anything about this issue anywhere else. Did you customize yours in some way that may be causing this problem?
You'll need to add some way to check the action and timing from within the script itself. For example: ```sh if [ "$CLIPBOARD_ACTION" == "copy" ]; then exit 0; fi...