1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-17 14:51:04 +02:00

refactor(clipboard): switch from nix to rustix

This commit is contained in:
Jake Stanger 2025-01-16 23:32:37 +00:00
parent a0231559d0
commit 5bb1c88c12
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
3 changed files with 10 additions and 5 deletions

View file

@ -1,6 +1,6 @@
use super::manager::DataControlDeviceManagerState;
use crate::lock;
use rustix::pipe::{PipeFlags, pipe_with};
use rustix::pipe::{pipe_with, PipeFlags};
use smithay_client_toolkit::data_device_manager::data_offer::DataOfferError;
use std::ops::DerefMut;
use std::os::fd::AsFd;