acopy

copy on one device, paste on another.

acopy syncs your clipboard across all your devices in real time. text/image you copy on your phone shows up on your laptop instantly — and the other way around.

// install

macOS / Linux:

curl -fsSL https://acopy.org/install.sh | sh

Windows (PowerShell):

irm https://acopy.org/install.ps1 | iex

Android:

// how it works

the client runs as a background service. it monitors your clipboard and syncs changes to all your other devices over a persistent websocket connection. clipboard data is encrypted in transit and stored only for history.

// headless & SSH

on headless Linux (e.g. over SSH), there's no display server to access the clipboard. acopy detects this during setup and installs clipboard shims that replace xclip/xsel/pbcopy/pbpaste. tools like Claude Code, vim, and tmux work transparently — no X11 forwarding needed.

you can also use acopy directly from the shell:

echo "hello" | acopy copy
acopy paste

// pricing

free pro $15/yr
devices 2 unlimited
clipboard sync
entry history 5 5

self-hosted instances are always free with all features.

// open source

clipboard data is sensitive. the client and server are fully open source under the MIT license and straightforward to audit. built with gleam on the erlang VM, postgresql, and plain html/css/js.