From 345bd19e9f445deb870042bd2d3d32c29d621626 Mon Sep 17 00:00:00 2001 From: gerblesh <101901964+gerblesh@users.noreply.github.com> Date: Mon, 7 Aug 2023 17:23:42 -0700 Subject: [PATCH] fix custom.just --- usr/share/ublue-os/just/custom.just | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/usr/share/ublue-os/just/custom.just b/usr/share/ublue-os/just/custom.just index df2fbead82..b3c0a20fda 100644 --- a/usr/share/ublue-os/just/custom.just +++ b/usr/share/ublue-os/just/custom.just @@ -1,14 +1 @@ !include /usr/share/ublue-os/just/00-custom.just - -# Install all flatpaks defined in recipe.yml -setup-flatpaks: - #!/usr/bin/env bash - echo 'Installing flatpaks from the ublue recipe ...' - flatpaks=$(yq -- '.firstboot.flatpaks[]' "/usr/share/ublue-os/recipe.yml") - for pkg in $flatpaks; do \ - echo "Installing: ${pkg}" && \ - flatpak install --user --noninteractive flathub $pkg; \ - done - -# Include some of your custom scripts here! ->>>>>>> 116e53a9e6bc183f174b06f8b54204be8d03dfab