-
Hi everyone! I cleared my clipboard, which had important info that I needed to save. Is there any way to recover the deleted clipboard history? |
Beta Was this translation helpful? Give feedback.
Answered by
spekkii
Jul 10, 2024
Replies: 1 comment
-
I used #809 to get the
That's how I recovered it, in case someone else might need to do the same! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
spekkii
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I used #809 to get the
Storage.sqlite
andStorage.sqlite-wal
files, as the cleared clipboard history should still be in theStorage.sqlite-wal
.sqlite3 Storage.sqlite "PRAGMA wal_checkpoint(FULL);"
Storage.sqlite
. I used DB Browser for SQLite.ZHISTORYITEMCONTENT
table and filter byZTYPE
according to the type of copy it was (mine was plain text, so I filtered bypublic.utf8-plain-text
).That's how I recovered it, in case someone else might need to do …