Clipse GUI does not listen to clipboard events. The clipse daemon does. Start it before using the GUI:
clipse -listen &For it to survive reboots, add an autostart entry for your environment. Window-manager-specific snippets are in wm-integration.md.
Confirm it's running:
pgrep -a clipseclipse-guiOn first run, Clipse GUI creates ~/.config/clipse-gui/settings.ini with default values. Copy something to your clipboard — it should appear in the list.
This is expected if:
- The daemon was just started and no clipboard events have fired yet
~/.config/clipse/clipboard_history.jsondoesn't exist yet
Copy any text. The list populates.
j/kor arrow keys to move up/downHome/Endto jump to top/bottomPgUp/PgDnto move 5 items at a time
/orffocuses the search entry- Type to filter; results update live
Escclears search and returns focus to the list
| Action | Keys | Effect |
|---|---|---|
| Copy | Enter |
Item copied to clipboard |
| Copy + paste | Shift+Enter |
Item copied and pasted into the previously focused window |
To make Enter always paste (instead of just copying), set enter_to_paste = True — see Configuration.
ptoggles pin on the selected itemTabfilters the list to show only pinned items- Pinned items have an accent-colored left border
Pins survive restarts. If protect_pinned_items = True, they're excluded from bulk deletes.
venters multi-select modeSpacetoggles selection on the current itemCtrl+A/Ctrl+Shift+Aselect / deselect allCtrl+XorShift+Deletedeletes all selected
Exit with v again, or Esc.
Spaceon a non-selection-mode row opens a preview- Preview supports text search (
Ctrl+F) and JSON prettify (Ctrl+B) - URLs detected in the item open in your default browser (if
open_links_with_browser = True)
Ctrl +/Ctrl -adjust text sizeCtrl 0resets to default
Compact mode removes metadata rows and tightens padding — more items per screen. Toggle from the header bar or set compact_mode = True in config.
By default, closing the window minimizes to tray instead of quitting. See Tray Integration for the tray menu, quick-paste behavior, and disabling this.
- Customize keys: they're hard-coded but extensible — see source at
clipse_gui/controller_mixins/keyboard_mixin.py - Change the theme: Theming
- Tune for your WM: Window Manager Setup