lzacharkow / tabby-cat-support

Ask questions, post issues, and add ideas for Tabby Cat!
18 stars 0 forks source link

Switching laptops #29

Open sbehnken opened 1 year ago

sbehnken commented 1 year ago

When switching to a new laptop is there any way to port over the goodies as well? It sucks having to start from scratch.

stefnotch commented 10 months ago

Yep, open the browser dev tools, go to the console tab and do

let v = localStorage.getItem("goodies");
copy(v); // Copies it directly to the clipboard

and then go to the new laptop, and do

localStorage.setItem("goodies", put copied goodies string here)

image