This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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..." | |