This commit is contained in:
nora 2025-09-18 21:36:59 +02:00
parent b2ff5b0763
commit 660afa0bc8
2 changed files with 3 additions and 0 deletions

View file

@ -16,3 +16,5 @@ clippyboard currently supports the following MIME types:
It will try to read out one of them (in descending preference) and store that value and provide it later. It will try to read out one of them (in descending preference) and store that value and provide it later.
If no supported MIME type is found, the clipboard entry is not stored. If no supported MIME type is found, the clipboard entry is not stored.
https://github.com/user-attachments/assets/0bfdfe39-1177-4d11-bf5a-63e738751d7a

View file

@ -495,6 +495,7 @@ pub fn main_inner(socket_path: &PathBuf) -> eyre::Result<Infallible> {
ExtDataControlManagerV1::interface().name ExtDataControlManagerV1::interface().name
); );
} }
rustix::fs::fcntl_setfl(notify_write_recv.as_fd(), OFlags::NONBLOCK).expect("todo"); rustix::fs::fcntl_setfl(notify_write_recv.as_fd(), OFlags::NONBLOCK).expect("todo");
rustix::fs::fcntl_setfl(conn.as_fd(), OFlags::NONBLOCK).expect("TODO"); rustix::fs::fcntl_setfl(conn.as_fd(), OFlags::NONBLOCK).expect("TODO");