libxid icon indicating copy to clipboard operation
libxid copied to clipboard

A rust port of the Golang xid library (https://github.com/rs/xid)

Results 2 libxid issues
Sort by recently updated
recently updated
newest added

Here's a simple patch: ```patch diff --git a/src/lib.rs b/src/lib.rs index ea221b3..b378b51 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -405,13 +406,15 @@ fn rand_int() -> AtomicUsize { } fn get_pid() -> u32...