6

I use Flatpak to install some applications on my machines for different reasons, now I want to copy my configurations (my home folder hidden directories and files) to a new disk to install Linux on another machine.

PROBLEM IS: I don't now where my Flatpak apps config files are, and I couldn't find them anywhere in my home folder.

note: I use Fedora GNU/Linux on a x86_64 machine, I also use packages from Flathub as well as packages from Fedora repositories.

Can anyone point me to where those config files are, and how to change their path to my home folder?

Thank you in advance.

TheDudeAbides
  • 446
  • 3
  • 12

2 Answers2

19

The applications store the user data in ~/.var/app. The configuration for the flatpak itself is located in ~/.local/share/flatpak (system wide configuration is in /var/lib/flatpak).

Vojtech Trefny
  • 16,922
  • 6
  • 24
  • 48
3

As @vojtech-trefny mentioned, you can find them in $HOME/.var/app (and the other folders he mentioned). If you'd like a GUI to make life easier for you, though, I'd recommend Flatseal for you: there you can have a nice overview over each installed flatpak package and you can easily change any setting you'd like.

telometto
  • 1,825
  • 2
  • 8
  • 29
  • 1
    Flatseal is nice, but there's a bootstrapping problem, you can't use flatseal to view/change the configuration of flatseal before starting it - I wanted to know for sure what flatseal would have access to (it would be better if it was distributed as a package for my distribution instead of only as a flatpak). So I highly recommend knowing the paths. – Henrik supports the community Mar 29 '22 at 10:41