Thanks to visit codestin.com
Credit goes to github.com

Skip to content

hammerthird/SLSsteam

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

116 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SLSsteam - Steamclient Modification for Linux

Index

  1. Downloading and Compiling
  2. Usage
  3. Configuration
  4. Installation and Uninstallation
  5. Updating
  6. Credits

Downloading and Compiling

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
make

Usage

LD_AUDIT="/full/path/to/SLSsteam.so" steam

Configuration

Configuration gets created at ~/.config/SLSsteam/config.yaml during first run

Installation and Uninstallation

Any distro:

./setup.sh install
./setup.sh uninstall

Arch Linux:

Download latest SLSsteam-Arch.pkg.tar.zst then run:

sudo pacman -U SLSsteam-Arch.pkg.tar.zst

NixOS:

Add 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

Updating

git pull
make rebuild

Afterwards run the installer again if that's what you've been using to launch SLSsteam

Credits

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

About

No description, website, or topics provided.

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Packages

 
 
 

Contributors

Languages

  • C++ 72.5%
  • C 22.5%
  • Nix 2.2%
  • Shell 2.1%
  • Makefile 0.7%