This is an automated archive made by the Lemmit Bot.
The original was posted on /r/opensource by /u/JellyGrimm on 2026-04-20 14:21:55+00:00.
I move files between my PC and mobile quite often. Tools like KDE Connect feel like overkill for simple transfers, and setting up a temporary http server every time is tedious because it still requires manually typing IPs and ports on the phone.
So I made a basic utility that spawns a temporary local server and generates a QR code. You scan the code with your phone and download the file(s) directly over your local network.
I wrote it in pure C using Nuklear for the GUI. The goal was to keep it as lightweight as possible; the Linux builds are around 230 KB. On Windows, it integrates into the right-click context menu, and on Linux, it works with “Open With” menu, or in any case you can just open the program and drag and drop any files you want. It doesn’t use the cloud or any external servers, it all happens in your cpu.
I’m pretty happy with how lightweight it turned out. I plan on adding bidirectional support later and make a separate binary that only contains the underlying CLI (some people may want to use it in servers for example) and actually make a decent UI, but for now, it does exactly what it says and it does it well. If anyone else finds it useful or has technical feedback, it’s appreciated.