📦 Installation (RPM-based)
Add the repository and install the package on Fedora or compatible RPM-based systems:
# Add the repository configuration
sudo tee /etc/yum.repos.d/flatpak-automatic.repo <<'EOF'
[flatpak-automatic]
name=Flatpak Automatic - Stable
baseurl=https://fedoraBee.github.io/flatpak-automatic/rpms/latest/stable/
enabled=1
gpgcheck=1
gpgkey=https://fedoraBee.github.io/flatpak-automatic/gpg.key
[flatpak-automatic-testing]
name=Flatpak Automatic - Testing
baseurl=https://fedoraBee.github.io/flatpak-automatic/rpms/latest/testing/
enabled=0
gpgcheck=1
gpgkey=https://fedoraBee.github.io/flatpak-automatic/gpg.key
EOF
# Update the package metadata cache
sudo dnf makecache
# Install the flatpak-automatic package
sudo dnf install flatpak-automatic
📦 Installation (Debian-based)
Add the repository and install the package on Ubuntu, Debian, or compatible systems:
# Download the GPG key and convert it to a format APT understands
curl -fsSL https://fedoraBee.github.io/flatpak-automatic/gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/flatpak-automatic-archive-keyring.gpg
# Add the repository to your system's sources list
echo "deb [signed-by=/usr/share/keyrings/flatpak-automatic-archive-keyring.gpg] https://fedoraBee.github.io/flatpak-automatic/debs stable main" | sudo tee /etc/apt/sources.list.d/flatpak-automatic.list
# Update your local package index
sudo apt-get update
# Install the flatpak-automatic package
sudo apt-get install flatpak-automatic