feat: added ForkOut backend and now forks out to xclip and wl-copy on linux
All checks were successful
ci/crow/push/release Pipeline was successful
ci/crow/tag/build Pipeline was successful

This commit is contained in:
Grace Yoder 2026-07-03 19:43:26 -06:00
parent 43c454a08c
commit c228995f20
Signed by: grace
SSH key fingerprint: SHA256:Wet3mU9H5QLc02gUBCI8mKRmHnkeOpnMIYsjx/YSbdQ
4 changed files with 43 additions and 1 deletions

View file

@ -42,6 +42,22 @@ pub fn main(init: std.process.Init) !void {
return;
}
// I don't like this but it will stay until I review how dispatch works
// with zig since I will probably be refactoring there
linux: {
const xdg_type = init.environ_map.get("XDG_SESSION_TYPE") orelse "";
if (std.mem.eql(u8, xdg_type, "wayland")) {
var clip = Clip.ForkOut.init(io, &[_][]const u8{"wl-copy"}) catch break :linux;
try run(io, &clip);
return;
} else if (std.mem.eql(u8, xdg_type, "x11")) {
var clip = Clip.ForkOut.init(io, &[_][]const u8{ "xclip", "-selection", "clipboard" }) catch break :linux;
try run(io, &clip);
return;
}
}
// Fallback Clipboard
var clip = try Clip.OSC52.init(alloc, io, size);
defer clip.free();