If you're on a pretty up to date distro you can go to Releases instead. Afterwards skip straight to Usage or Installation and Uninstallation
Requires: 32 bit versions of g++, OpenSSL & pkg-config
Then run:
git clone "https://github.com/AceSLS/SLSsteam"
cd SLSsteam
makeLD_AUDIT="/full/path/to/SLSsteam.so" steamConfiguration gets created at ~/.config/SLSsteam/config.yaml during first run
./setup.sh install
./setup.sh uninstallDownload latest SLSsteam-Arch.pkg.tar.zst then run:
sudo pacman -U SLSsteam-Arch.pkg.tar.zstAdd this to your flake inputs
sls-steam = {
url = "github:AceSLS/SLSsteam";
inputs.nixpkgs.follows = "nixpkgs";
};Then, add it to your packages and run it with SLSsteam from the terminal
environment.systemPackages = [inputs.sls-steam.packages.${pkgs.system}.wrapped];Alternatively, to have it run with steam on any launch, add it to your steam environment variables
programs.steam.package = pkgs.steam.override {
extraEnv = {
LD_AUDIT = "${inputs.sls-steam.packages.${pkgs.system}.sls-steam}/SLSsteam.so";
};
};Configuration on NixOS
You can configure SLSsteam declaratively using the home-manager module
Add the module to your imports
imports = [inputs.sls-steam.homeModules.sls-steam];Then configure it through services.sls-steam.config. For example:
services.sls-steam.config = {
PlayNotOwnedGames = true;
AdditionalApps = [
3769130
];
};You can find further details in the definition file
git pull
make rebuildAfterwards run the installer again if that's what you've been using to launch SLSsteam
Contributors:
- amione: Creating the SLSsteam banner & logo the instant he found out I was looking around for one <3
- DeveloperMikey: Added Nix support
- thismanq: Informing me that DisableFamilyShareLockForOthers is possible
Others:
- All the staff members of the Anti Denuvo Sanctuary for all their hard work they do. They also found a way to use SLSsteam I didn't even intend to, so shoutout to them
- Riku_Wayfinder: Being extremely supportive and lightening my workload by a lot. So show him some love my guys <3
- Gnanf: Helping me test the Family Sharing bypass
- rdbo: For his great libmem library, which saved me a lot of development and learning time
- oleavr and all the other awesome people working on Frida for easy instrumentation which helps a lot in analyzing, testing and debugging
- All the folks working on Ghidra, this was my first project using it and I'm in love with it!
- And many more I can't possibly list here for reporting bugs and giving feedback! Thank you guys <3
