blob: 0d60ddcbecc3ffaac4d4159629264f209b3ab5a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
|