4

On which folder(s) Liferea stores user data (subscriptions and articles)? There is a folder named .liferea_1.8 in my home but it does not contain any user data.

The goal is to synchronise that folder with a cloud service so that Liferea accesses the exact same assets at home, work, etc.

Note: the official Liferea support medium, a mailling list, seems to have been deactivated last April.

2 Answers2

1

configuration files mainly founded under ~/.gconf/apps/liferea While other files such as user data and subscriptions,etc... are founded in a SQLite3 database named liferea.db under ~/.liferea_1.8 directory.

enter image description here

If you open that db you can find the data inside:

enter image description here

Maythux
  • 87,123
0

Feed metadata such as URLs and update intervals are in "$XDG_CONFIG_HOME/liferea". Feed articles are in "$XDG_DATA_HOME/liferea". (See XDG Base Directory Specification for the explanation of the variables.)

beroal
  • 159