diff options
| author | seth <[email protected]> | 2024-01-25 08:20:48 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-01-25 11:16:13 -0500 |
| commit | c9e0dd7c15260eb73d59b9996a5a9a17548afd59 (patch) | |
| tree | b23d24c9e463a76205ac464e381cb9e6685013f5 /base/initial_setup.sh | |
| parent | 4a2a030af2daef14c40a16e00ad186ac77796cea (diff) | |
don't use script files
Diffstat (limited to 'base/initial_setup.sh')
| -rwxr-xr-x | base/initial_setup.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/base/initial_setup.sh b/base/initial_setup.sh new file mode 100755 index 0000000..0d60ddc --- /dev/null +++ b/base/initial_setup.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash +set -euxo pipefail + +# make sure we're using the right flathub +flatpak remote-delete flathub --force +flatpak remote-add --system --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo +flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo + +# add all of our stuff :) +to_install=( + "com.raggesilver.BlackBox" + "io.github.celluloid_player.Celluloid" + "com.spotify.Client" + "com.discordapp.Discord" + "com.mattjakeman.ExtensionManager" + "org.mozilla.firefox" + "com.github.tchx84.Flatseal" + "org.freedesktop.Platform.VulkanLayer.MangoHud" + "org.prismlauncher.PrismLauncher" + "io.github.flattool.Warehouse" +) + +for id in "${to_install[@]}"; do + flatpak install --user --noninteractive flathub "$id" +done |
