Compare commits

...

2 commits

Author SHA1 Message Date
921aa2e033
🚨 (flatpak-sync) Ignore two irrelevant shellcheck warnings 2023-07-20 21:07:51 +02:00
0a66eb9fb6
♻ (flatpak-sync) Put code in own method
The new method sync is at this point always called
2023-07-20 21:06:42 +02:00

View file

@ -9,27 +9,33 @@ set -euo pipefail
APPS_LIST_PATH="${APPS_LIST_PATH:=$HOME/.config/flatpak-sync/apps.list}" APPS_LIST_PATH="${APPS_LIST_PATH:=$HOME/.config/flatpak-sync/apps.list}"
readarray -t requested_apps < <(cat "$APPS_LIST_PATH") function sync() {
readarray -t installed_apps < <(flatpak list --app --columns app | tail -n +1) readarray -t requested_apps < <(cat "$APPS_LIST_PATH")
readarray -t installed_apps < <(flatpak list --app --columns app | tail -n +1)
declare -a requested_apps_cleaned=() declare -a requested_apps_cleaned=()
echo "Checking for apps to install." echo "Checking for apps to install."
for app in "${requested_apps[@]}"; do for app in "${requested_apps[@]}"; do
if [[ -z "$app" ]] || [[ "$app" =~ ^#.* ]]; then if [[ -z "$app" ]] || [[ "$app" =~ ^#.* ]]; then
continue continue
fi fi
requested_apps_cleaned+=("$app") requested_apps_cleaned+=("$app")
if [[ ! "${installed_apps[*]}" =~ "${app}" ]]; then # shellcheck disable=SC2076
echo "$app not installed. Installing it." if [[ ! "${installed_apps[*]}" =~ "${app}" ]]; then
flatpak install -y "$app" echo "$app not installed. Installing it."
fi flatpak install -y "$app"
done fi
done
echo "Checking for apps to remove." echo "Checking for apps to remove."
for app in "${installed_apps[@]}"; do for app in "${installed_apps[@]}"; do
if [[ ! "${requested_apps_cleaned[*]}" =~ "${app}" ]]; then # shellcheck disable=SC2076
echo "$app no found in apps list. Removing it."; if [[ ! "${requested_apps_cleaned[*]}" =~ "${app}" ]]; then
flatpak uninstall -y "$app" echo "$app no found in apps list. Removing it.";
fi flatpak uninstall -y "$app"
done fi
done
}
sync