feat(deck): Provide SteamCMD by default

This commit is contained in:
Kyle Gospodnetich 2023-07-23 19:36:50 -07:00
parent 0e0cc290f4
commit 52f3abcfbe
2 changed files with 10 additions and 0 deletions

View File

@ -79,6 +79,11 @@ screens:
default: true
packages:
- Install Nix Package Support: just --unstable install-nix
SteamCMD:
description: Installs SteamCMD
default: true
packages:
- Install SteamCMD: just --unstable get-steamcmd
SteamDeckGyroDSU:
description: Allows emulators and other applications to receive Steam Deck gyro motion data
default: true

View File

@ -23,6 +23,11 @@ get-emudeck:
wget https://www.emudeck.com/EmuDeck.desktop -P ~/Desktop
chmod +x ~/Desktop/EmuDeck.desktop
get-steamcmd:
wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz -O /tmp/steamcmd.tar.gz
tar -xvzf steamcmd.tar.gz -C ~/.steam
rm /tmp/steamcmd.tar.gz
install-nix: _auth
curl -s https://raw.githubusercontent.com/dnkmmr69420/nix-installer-scripts/main/installer-scripts/silverblue-nix-installer.sh | sudo -A bash