Merge debian dotfiles

This commit is contained in:
2024-05-24 16:40:16 +01:00
parent 12ad4e23a9
commit 7cc212df5a
69 changed files with 72 additions and 1868 deletions

25
scripts/install-games.sh Executable file
View File

@@ -0,0 +1,25 @@
#! /bin/bash
sudo apt install flatpak || {
echo "Failed to install flatpak. Try: \"sudo apt update\" and run the script again."
exit 1
}
flatpak --user remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo || {
echo "Failed to add flathub remote."
exit 1
}
flatpak install flathub com.valvesoftware.Steam || {
echo "Failed to install Steam."
exit 1
}
flatpak install flathub com.github.Anuken.Mindustry || {
echo "Failed to install Mindustry."
exit 1
}
echo
echo "Done."
echo