Files
punktfunk/docs-site/content/docs/clipboard.md
enricobuehler ac5299d4ce docs: the Deck plugin is a launcher now, not a second client
The plugin's settings tab, fullscreen page, host editor and games picker are gone, and the
docs described all four in detail. Sweeps clients/decky/README.md and the docs site.

steam-deck.md gains a **Request access** section — the no-PIN path where the host's operator
approves the Deck, which is the one genuinely new thing a user gets — and says plainly where
the settings went: **Open Punktfunk → Settings**, the same rows over the same store, one tap
from the same panel. A removal that reads as a regression is worth a sentence, not a silence.
The troubleshooting table drops the rows for surfaces that no longer exist and gains the two
questions the new path will actually raise ("request access isn't offered", "the stream just
sits there").

client-settings.md claimed ~18 settings were "offered by … and Decky". None are; the console
home offers them. Its intro now names the console home's real sections (Stream, Video,
Presentation, Audio, Controller, Touchscreen, Interface, Profiles) instead of describing the
deleted sidebar.

Three claims in that file turned out to be wrong ALREADY, independent of this rework, and are
fixed here because verifying against crates/pf-console-ui/src/screens/settings.rs is what
found them:

  • "Render scale — offered everywhere except the console home's list". RowId::RenderScale has
    been in the console's ROWS since 2026-07-31.
  • wake-on-lan.md: "Punktfunk Console has no auto-wake setting of its own". It does —
    RowId::AutoWake, "Wake hosts automatically". Its Wake & Connect BUTTON is independent of
    the setting, which is the true half that sentence was built on.
  • The console home's Library button was documented as gated on the "Show game library"
    toggle. It isn't — `library_enabled` appears nowhere in pf-console-ui outside the toggle
    row itself; home.rs offers Library on any paired, saved host.

Also updated: support-matrix (Decky's Profiles and Game library go /⚠️ — the panel shows
pinned profile cards but creates none, and the library lives in the console home),
wake-on-lan (the plugin no longer fires its own packet or stretches the connect budget — the
CLI runs the real wake-and-wait), pairing, game-library, profiles-and-links, input, clipboard
and install-client.
2026-08-04 20:58:11 +02:00

178 lines
9.3 KiB
Markdown

---
title: Shared clipboard
description: Copy on one machine and paste on the other — the two switches that have to be on, what actually crosses, and why the toggle does nothing when only one of them is flipped.
---
Punktfunk can share the clipboard between the machine you are sitting at and the host you are
streaming. Copy a URL on your laptop, paste it into a browser on the host. Copy an error message on
the host, paste it into a chat app on your laptop.
**Two separate switches have to be on:**
1. The **host** operator has to allow it, with a line in `host.env` and a host restart. This one is
off by default.
2. **You** have to turn it on for that one host, in that host's edit sheet on your client. This one
is off by default on the macOS, Windows and Linux clients — but **on by default on Android**.
Flipping one and not the other looks exactly like the feature not existing. So check both.
## 1. Allow it on the host
Add a `PUNKTFUNK_CLIPBOARD` line to the host's `host.env``~/.config/punktfunk/host.env` on
Linux, `%ProgramData%\punktfunk\host.env` on Windows.
```ini
PUNKTFUNK_CLIPBOARD=on
```
The accepted values:
| Value | Effect |
|---|---|
| unset, empty, `0`, `off`, `false` | **Off (the default).** The host never advertises the clipboard capability and never accepts a clipboard transfer. |
| `text-only`, `no-files`, `text` | On for text, HTML, rich text and images. File transfer is refused. |
| `on`, `1` | On, and file transfer is permitted by policy. |
Values are trimmed and compared case-insensitively. **Anything the host doesn't recognise is
treated as `on`** — a typo like `PUNKTFUNK_CLIPBOARD=yes` or `no-file` enables the permissive
policy rather than failing, so check the spelling if you meant `text-only`.
The file is only read at startup, so restart the host. On Linux:
```bash
systemctl --user restart punktfunk-host
```
On Windows, from an Administrator prompt:
```powershell
punktfunk-host service restart
```
See [Configuration](/docs/configuration) for the rest of `host.env`.
> **About the file mode.** No client shipping today asks for file transfer, and no host clipboard
> backend offers file formats yet. `on` and `text-only` therefore behave the same in practice —
> `text-only` is how you make that explicit and keep it that way.
## 2. Turn it on for that host, in your client
The client switch is **per saved host**, not global: handing a machine your clipboard is a decision
about *that* machine. You set it in the host's edit sheet, and it is deliberately not something a
[settings profile can carry](/docs/profiles-and-links#what-a-profile-cant-change).
| Client | Where the switch is | Label | Default |
|---|---|---|---|
| macOS | Host card menu → **Edit…** | **Share clipboard with this host** | Off |
| Windows | Host tile menu → **Edit…** | **Share clipboard with this host** | Off |
| Linux (GTK) | Host card menu → **Edit…** | **Share clipboard** | Off |
| Android (touch) | Host card menu → **Edit…** | **Shared clipboard** | **On** |
On Android the switch is only in the touch edit dialog. The controller/TV interface — what you get
on Android TV, and on a phone when a controller is attached — has its own **Edit Host** screen with
no clipboard row, so there is nowhere to change it there. It stays on, which is the Android default.
The setting is read when a session starts, so if you change it while streaming, reconnect.
macOS can also flip it mid-session: **Stream ▸ Share Clipboard** (⌃⌥⇧C), which becomes **Stop
Sharing Clipboard** once the host has acknowledged it.
iOS, iPadOS, tvOS and a Steam Deck in Gaming Mode have no clipboard switch — neither the Decky
panel nor the client's console home has a host edit sheet — see
[what each client does](#which-hosts-and-clients-support-it) below.
## Nothing crosses until something pastes
A copy costs nothing. When you copy, your machine announces only the **list of formats** it now
holds — no bytes. The bytes are pulled across on a separate transfer, and only when an application
on the other end actually pastes. Copying a large image and never pasting it transfers nothing.
That holds for everything you copy on your own machine, and for both directions on the host. It
does **not** hold for a host copy arriving at a Windows or Android client: those two fetch the
content straight away and put it on your local clipboard, whether or not you ever paste. On Windows
that is because the lazy path needs Windows delayed rendering, which the client doesn't implement
yet; on Android there is no way to satisfy a paste from the network at all. The macOS client is
lazy in both directions.
A single transfer is capped at 64 MiB. Nothing else limits size, so a very large host-side copy can
cross to a Windows or Android client for a paste that never happens.
What you copy on the **macOS or Windows client** is filtered for secrets: content marked
`org.nspasteboard.ConcealedType` or `org.nspasteboard.TransientType` on macOS, or
`ExcludeClipboardContentFromMonitorProcessing` on Windows — what password managers set — is never
announced and never served. That check exists only in those two clients. The Android client has no
equivalent, and neither does the host, so a password copied **on the host** is announced to your
client like anything else.
The clipboard rides the native Punktfunk protocol's control channel, so it only exists in sessions
from a Punktfunk client. A Moonlight client has no clipboard.
## Which hosts and clients support it
**Hosts.** The host runs on Linux and Windows, and both have a clipboard backend — but on Linux it
depends on the desktop session.
On Linux the host needs one of two mechanisms in the session it is streaming:
- `ext-data-control-v1` — KWin, wlroots/Sway and Hyprland. Tried first.
- GNOME's own `org.gnome.Mutter.RemoteDesktop.Session` clipboard, used directly. Tried second.
The older `zwlr-data-control-unstable-v1` is **not** implemented, so a compositor that offers only
that has no backend. Neither does a [gamescope](/docs/gamescope) session.
On Windows the host uses the Win32 clipboard, with delayed rendering so your content is only read
when a host application pastes.
**Clients**, and what each one actually moves:
| Client | What crosses |
|---|---|
| macOS | Plain text, rich text (RTF), HTML, and PNG, JPEG and GIF images |
| Windows | Plain text, and PNG images |
| Android, Android TV | **Plain text only** |
| Linux (GTK), Steam Deck | Nothing yet — see below |
| iOS, iPadOS, tvOS | Not implemented |
The **Linux client has the switch but no working clipboard bridge**: it enables the plane and then
has no code to read or write the desktop's own clipboard, so nothing is announced and nothing is
pasted. Turning it on there is harmless but has no effect today. On a Steam Deck in Gaming Mode
there is no switch at all — the Decky panel doesn't edit hosts — and since a Deck streams with that
same Linux client, a switch there would have nothing to move anyway.
When you copy **on the Windows client**, images cross only if the copying application publishes the
registered `PNG` clipboard format. Many Windows apps publish only a bitmap, and those copies aren't
announced yet. The other direction is fine: an image copied on the host reaches the Windows client
either way.
The host side is richer than any client: it can offer and accept text, HTML, RTF, PNG, JPEG and
GIF. What you get is therefore whatever your client supports.
## Why the toggle does nothing (or is greyed out)
On macOS, **Stream ▸ Share Clipboard** is greyed out whenever you are not streaming, or the
connected host did not advertise a clipboard. On the other clients there is nothing to grey out —
the per-host switch always looks available, and a host that can't do it simply does nothing. Work
through these in order:
- **The host has it off.** The default. Nothing was added to `host.env`, or the value is `off`,
`0`, `false` or empty. Fix it with step 1 above.
- **`host.env` was edited but the host wasn't restarted.** The file is read once, at startup.
- **The switch is off for this host in your client.** It is per saved host, and off by default
everywhere except Android. Check the host's **Edit…** sheet — step 2 above.
- **The host's session has no supported backend.** The host allows the clipboard, so it still
advertises the capability, but it has nothing to read the desktop's clipboard with. This is a
gamescope session, a compositor with only the old `zwlr-data-control-unstable-v1`, or a GNOME
session whose Mutter doesn't expose the direct RemoteDesktop clipboard. Nothing on screen tells
you this apart — the host log does.
- **The host is older than the feature.** A host from before clipboard sync never advertises it.
- **Your client doesn't implement it** — Linux, Steam Deck, iOS, iPadOS or tvOS. Nothing crosses
regardless of what the host allows.
- **You changed the switch while connected.** Reconnect, or use ⌃⌥⇧C on macOS.
- **The copy was a secret, or a format nobody handles.** Concealed content is skipped on purpose on
the macOS and Windows clients, and an image copied on Windows as a bare bitmap isn't announced.
Still stuck? The host log records what it decided on each session — a `clipboard control` line with
the resolved state, and a `clipboard backend unavailable` line when the session had nothing to bind
to. That is the fastest way to tell "off by policy" from "no backend" — see
[Troubleshooting](/docs/troubleshooting).