Bottles
  • Welcome
  • 📌Getting started
    • Installation
    • First run
    • Environments
  • Components
    • Runners
    • DXVK
  • Bottles
    • App preferences
    • Run .exe/.msi/.bat/.lnk files
    • Shortcuts
    • Bottle preferences
    • Dependencies
    • Programs
    • Installers
    • Versioning
    • Backups & Duplicate
    • Import from other managers
    • Configuration files
  • Utilities
    • Logs & Debugger
    • CMD
    • Winecfg
    • Task manager
    • Regedit
    • Uninstaller
  • Advanced
    • CLI
    • Use Bottles as wine command
    • xdg-open links
  • 🎩Contribute
    • Missing dependencies
  • Flatpak
    • Can't enable Steam Proton manager
    • Migrate directories to Flatpak
    • Black screen or silent crash
    • Expose directories
      • Use system home
  • FAQ
    • Why Bottles?
    • Where is Winetricks?
    • Updates and old versions
    • Video GStreamer Problems
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. Flatpak

Migrate directories to Flatpak

The Flatpak package uses a different path for storing bottles.

Migrate to Flatpak

In recent versions of the Flatpak and, the bottles are saved in a different location than the other packages, respecting the structure of the Flatpak package.

Paths differences

The other packages save the essential Bottles files, such as components, temps, and bottles, in the directory: ~/.local/share/bottles . Flatpak saves these files in the Flatpak data directory: ~/.var/app/com.usebottles.bottles/data/bottles.

Migrate old bottles to Flatpak

The migration is simple as it sounds - just move (or copy) the content of the path ~/.local/share/bottles to the new one ~/.var/app/com.usebottles.bottles/data/bottles

# make a copy
yes | cp -rf \
~/.local/share/bottles/* \
~/.var/app/com.usebottles.bottles/data/bottles

# or move (using rsync to take care of existing files)
rsync -a \
~/.local/share/bottles/* \
~/.var/app/com.usebottles.bottles/data/bottles

Restart Bottles and that's it.

PreviousCan't enable Steam Proton managerNextBlack screen or silent crash

Last updated 3 years ago

Was this helpful?