Skip to content

Instantly share code, notes, and snippets.

@DUB1401
DUB1401 / unfedorize-flatpaks.sh
Created October 18, 2025 08:21
Bash script to replace Fedora flatpaks with it Falthub versions
#!/bin/bash
# Get list of local Fedora flatpaks.
fedora_apps=$(flatpak list --columns=application,origin | grep fedora | awk '{print $1}')
not_found=()
for app_id in $fedora_apps; do
echo "Checking $app_id in Flathub..."