mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-11 17:26:04 +00:00
14 lines
441 B
Plaintext
14 lines
441 B
Plaintext
!include /usr/share/ublue-os/just/bling.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!
|