-
-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Labels
Description
After running for a while my clipse seems to have bugged out, now no textual clipboard entries end up in the history anymore. New image entries are still getting stored, and running clipse -p prints the text from my clipboard as expecting.
Heres how its being run if that helps narrow down the cause:
17:58:22 > systemctl --user status clipse
● clipse.service - Useful clipboard manager TUI for Unix
Loaded: loaded (/home/noodle/.config/systemd/user/clipse.service; enabled; preset: ignored)
Active: active (running) since Tue 2025-07-08 09:53:21 AEST; 8h ago
Invocation: 82707dbc666a4e55a43622b70114ecf0
Process: 4339 ExecStart=/nix/store/35yjc3r0lp5ccz8lvhaqbnqz686lhnhn-clipse-1.1.0/bin/clipse -listen (code=exited, status=0/SUCCESS)
Tasks: 7 (limit: 18785)
Memory: 3.4M (peak: 20.7M, swap: 1.2M, swap peak: 1.2M, zswap: 95.9K)
CPU: 8.096s
CGroup: /user.slice/user-1000.slice/user@1000.service/background.slice/background-graphical.slice/clipse.service
├─4367 wl-paste --type image/png --watch /nix/store/35yjc3r0lp5ccz8lvhaqbnqz686lhnhn-clipse-1.1.0/bin/clipse --wl-store ">/de>
├─4368 wl-paste --type text --watch /nix/store/35yjc3r0lp5ccz8lvhaqbnqz686lhnhn-clipse-1.1.0/bin/clipse --wl-store ">/dev/nul>
└─5331 /nix/store/35yjc3r0lp5ccz8lvhaqbnqz686lhnhn-clipse-1.1.0/bin/clipse --wl-store ">/dev/null" "2>&1" "&"
Jul 08 09:53:21 noodlepad systemd[4124]: Starting Useful clipboard manager TUI for Unix...
Jul 08 09:53:21 noodlepad systemd[4124]: Started Useful clipboard manager TUI for Unix.
17:58:57 > systemctl --user cat clipse
# /home/noodle/.config/systemd/user/clipse.service
[Install]
WantedBy=graphical-session.target
[Service]
ExecStart=/nix/store/35yjc3r0lp5ccz8lvhaqbnqz686lhnhn-clipse-1.1.0/bin/clipse -listen
Restart=on-failure
Slice=background-graphical.slice
Type=forking
[Unit]
After=graphical-session.target
BindsTo=graphical-session.target
Description=Useful clipboard manager TUI for Unix
And heres the contents of my config.json
{
"allowDuplicates": false,
"historyFile": "clipboard_history.json",
"maxHistory": 100,
"logFile": "clipse.log",
"themeFile": "custom_theme.json",
"tempDir": "tmp_files",
"keyBindings": {
"choose": "enter",
"clearSelected": "S",
"down": "down",
"end": "end",
"filter": "/",
"home": "home",
"more": "?",
"nextPage": "right",
"prevPage": "left",
"preview": " ",
"quit": "q",
"remove": "x",
"selectDown": "ctrl+down",
"selectSingle": "s",
"selectUp": "ctrl+up",
"togglePin": "p",
"togglePinned": "tab",
"up": "up",
"yankFilter": "ctrl+s"
},
"imageDisplay": {
"type": "sixel",
"scaleX": 16,
"scaleY": 16,
"heightCut": 10
}
}
Heres a screenshot of what clipse shows, after I had to copy those last two code blocks into the clipboard to paste in this issue (there should be an entry for each, but instead there are only entries for images)

Reactions are currently unavailable