* fix:(default-flatpaks): Missing notification for system flatpaks This approach, while more fragmented, it's cleaner, as there is a clearer separation of root & non-root operations done by flatpak-setup service. This should probably increase security too (but I'm not the expert to talk seriously about that). It also gets rid of some non-harming error for /var data, can't remember it fully. While it may be confusing for users that they have to type: `systemctl status --user system-flatpak-setup` instead of previous: `systemctl status system-flatpak-setup` It is something worth sacrificing for the important user-experience fix.
42 lines
1.7 KiB
Bash
Executable file
42 lines
1.7 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Opt out of and remove Fedora's flatpak repo
|
|
if grep -qz 'fedora' <<< "$(flatpak remotes)"; then
|
|
/usr/bin/gnome-software --quit
|
|
/usr/lib/fedora-third-party/fedora-third-party-opt-out
|
|
/usr/bin/fedora-third-party disable
|
|
flatpak remote-delete fedora --force
|
|
flatpak remote-delete fedora-testing --force
|
|
|
|
# Remove flatpak apps from origin fedora
|
|
FEDORA_FLATPAKS=$(flatpak list --app --columns=application,origin | grep -w 'fedora' | awk '{print $1}')
|
|
flatpak remove --system --noninteractive ${FEDORA_FLATPAKS[@]}
|
|
|
|
# Remove flatpak runtimes from origin fedora
|
|
FEDORA_FLATPAKS=$(flatpak list --runtime --columns=application,arch,branch,origin | grep -w 'fedora' | awk '{print $1"/"$2"/"$3}')
|
|
flatpak remove --system --noninteractive ${FEDORA_FLATPAKS[@]}
|
|
fi
|
|
|
|
REPO_INFO="/etc/flatpak/system/repo-info.yml"
|
|
REPO_URL=$(yq '.repo-url' $REPO_INFO)
|
|
REPO_NAME=$(yq '.repo-name' $REPO_INFO)
|
|
REPO_TITLE=$(yq '.repo-title' $REPO_INFO)
|
|
|
|
# Set up system-wide Flatpak repository
|
|
if [[ ! $REPO_URL == "null" && ! $REPO_NAME == "null" ]]; then
|
|
flatpak remote-add --if-not-exists --system "$REPO_NAME" "$REPO_URL"
|
|
echo "Adding system-wide remote $REPO_NAME from $REPO_URL"
|
|
fi
|
|
|
|
# If configured remote is flathub, enable it here.
|
|
# Flathub is already installed on Fedora, but not enabled by default,
|
|
# so the above command won't add it again
|
|
if [[ $REPO_NAME == "flathub" ]]; then
|
|
flatpak remote-modify --system "$REPO_NAME" --enable
|
|
fi
|
|
|
|
# Change repository title to configured title, if not null
|
|
if [[ ! $REPO_TITLE == "null" ]]; then
|
|
flatpak remote-modify --system "$REPO_NAME" --title="$REPO_TITLE"
|
|
echo "Setting title $REPO_TITLE for remote $REPO_NAME"
|
|
fi
|