added gaming

dev-docs
Moritz Böhme 2021-09-14 23:04:29 +02:00
parent 249be1b40f
commit 9b623aa532
3 changed files with 40 additions and 0 deletions

30
bin/updatePGEfast.sh Normal file
View File

@ -0,0 +1,30 @@
#!/usr/bin/env bash
baseuri="https://github.com/GloriousEggroll/proton-ge-custom/releases/download"
latesturi="https://api.github.com/repos/GloriousEggroll/proton-ge-custom/releases/latest"
dstpath="$HOME/.steam/root/compatibilitytools.d"
latestversion="$(curl -s $latesturi | egrep -m1 "tag_name" | cut -d \" -f4)"
if [[ -d $dstpath/Proton-$latestversion ]]
then
echo "Proton $latestversion is the latest version and is already installed."
echo "Exiting..."
exit 0
else
echo "Proton $latestversion is the latest version and is not installed yet."
echo "Installing Proton $latestverion"
url=$(curl -s $latesturi | egrep -m1 "browser_download_url.*Proton" | cut -d \" -f4)
fi
rsp="$(curl -sI "$url" | head -1)"
echo "$rsp" | grep -q 302 || {
echo "$rsp"
exit 1
}
[ -d "$dstpath" ] || {
mkdir "$dstpath"
echo [Info] Created "$dstpath"
}
curl -sL "$url" | tar xfzv - -C "$dstpath"

View File

@ -5,6 +5,7 @@
./apps
./cli
./desktop
./gaming
./services
];

View File

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
home.packages = with pkgs; [
steam
];
};
}