Giter VIP home page Giter VIP logo

maralexruiz / nonsteamlaunchers-on-steam-deck Goto Github PK

View Code? Open in Web Editor NEW

This project forked from moraroy/nonsteamlaunchers-on-steam-deck

0.0 0.0 0.0 1.4 MB

Installs the latest GE-Proton and Installs Non Steam Launchers under 1 Proton prefix folder and adds them to your steam library. Installs... Battle.net, Epic Games, Ubisoft, GOG, EA App, Amazon Games, itch.io , Legacy Games, The Humble Games Collection, IndieGala, Rockstar Games Launcher, Glyph, Minecraft & VK Play. SD Card Support and Games.

Home Page: https://github.com/sponsors/moraroy

License: MIT License

Shell 16.85% Python 82.71% Dockerfile 0.44%

nonsteamlaunchers-on-steam-deck's Introduction

NonSteamLaunchers ๐Ÿš€

This script installs the latest GE-Proton, installs NonSteamLaunchers under one unique Proton prefix folder in your compatdata folder path called "NonSteamLaunchers" and adds them to your Steam Library. It will also add the games automatically on every steam restart. So you can use them on Desktop or in Game Mode.

Features โœ…

  • Automatic installation of the most popular launchers in your Steam Deck ๐ŸŽฎ
  • Handle automatically the download and installation of your chosen launchers and the games โŒš๏ธ
  • MicroSD Support ๐Ÿ’พ This script supports moving the entire prefix to a microSD. The script will install launchers and games to your SD card, and the launchers in Steam will point to the SD card installation. This allows you to save internal storage space on your Steam Deck!

Supported Stores ๐Ÿ›

  • Amazon Games Launcher โœ”๏ธ
  • Battle.net โœ”๏ธ
  • EA App โœ”๏ธ
  • Epic Games โœ”๏ธ
  • GOG Galaxy โœ”๏ธ
  • Humble Games Collection โœ”๏ธ
  • IndieGala โœ”๏ธ
  • Itch.io โœ”๏ธ
  • Legacy Games โœ”๏ธ
  • Rockstar Games Launcher โœ”๏ธ
  • Ubisoft Connect โœ”๏ธ
  • Glyph โœ”๏ธ
  • Minecraft โœ”๏ธ
  • Playstation Plus โœ”๏ธ
  • VK Play โœ”๏ธ

Supported Streaming Sites for games and as well as any website. ๐ŸŒ

  • Website Shortcut Creator โœ”๏ธ
  • Xbox Game Pass โœ”๏ธ
  • GeForce Now โœ”๏ธ
  • Amazon Luna โœ”๏ธ
  • Netflix โœ”๏ธ
  • Amazon Prime Video โœ”๏ธ
  • Disney+ โœ”๏ธ
  • Hulu โœ”๏ธ
  • Youtube โœ”๏ธ
  • Twitch โœ”๏ธ
  • movie-web โœ”๏ธ

Finds Games Automatically

"NSLGameScanner.service" is also live when you use this script and continues after the script is closed and even works after your Steam Deck has restarted. This works in the background as a service file to automatically add your games to your library on every Steam restart. Currently adds:

  • Epic Games ๐ŸŽฎ
  • Ubisoft Connect ๐ŸŽฎ
  • EA App ๐ŸŽฎ
  • Gog Galaxy ๐ŸŽฎ
  • Battle.net ๐ŸŽฎ
  • Amazon games ๐ŸŽฎ

How to Install ๐Ÿ”ง

Download NonSteamLaunchers

  • Go to desktop mode, right click the download button above and save the .desktop file to your Steam Deck desktop.
  • Go to your desktop, click the NonSteamLaunchers icon, it will download and run the latest NonSteamLaunchers.sh from this repository and run it.
  • You will simply have to choose which launcher to install and let the script handle the rest. ๐Ÿ’ป No files are left in your "Downloads" they are deleted after installation.
  • After running the script, launch Steam on your Steam Deck. You'll find the new launchers in your library under the non-steam tab. Click a launcher to see your installed games from that store, and launch them directly from Steam! If you have downloaded a game inside of your launcher, restart your deck or steam adn the NSLGameScanner.service should add it to your library. Even in gamemode ๐Ÿฅณ

โ–ถ๏ธ YouTube Tutorial ๐Ÿกบ๐Ÿกบ๐Ÿกบ https://www.youtube.com/watch?v=svOj4MTEAVc ๐Ÿกธ๐Ÿกธ๐Ÿกธ โ–ถ๏ธ

๐Ÿ“– Step-by-step Article ๐Ÿกบ๐Ÿกบ๐Ÿกบ here ๐Ÿกธ๐Ÿกธ๐Ÿกธ ๐Ÿ“–

How to Uninstall ๐Ÿ—‘

  • Just run the script, and hit "Uninstall". Alternatively, if you want to totally wipe evrything from NonSteamLaunchers click "Start Fresh".
  • That's it.

Currently Working On ๐Ÿ‘ทโ€โ™‚๏ธ

  • Decky Loader Plugin is available here
  • Integrate better with BoilR โŒ

Contributing ๐Ÿค

If you have any suggestions or improvements for this script, feel free to open an issue or submit a pull request.

You can donate to me on ko-fi, liberapay, or sponsor me on github or patreon

Development Environment

Dev Container

Install Docker. Once installed, a clean dev environment with a Docker container native to VSCode is spun up automatically.

  • Command palette (โ‡งโŒ˜P) > Dev Containers: Reopen in Container
  • F5 for debug
    • May need to select interpreter (e.g., /opt/venv/bin/python) first

VSCode Extensions (Dev Container)

Manual Docker Instance

If VSCode isn't present or only the python portion (cf. __init__.py) is being worked on, it's possible to just run a Docker container on its own. The container installs the correct version of python and any dependencies (e.g., ipython, rich) in requirements.txt.

# navigate to directory with Dockerfile
cd .devcontainer/

# build image
docker build -t nonsteamlaunchers .

# run container
docker run -it --rm --name=mynonsteamlaunchers --workdir=/app -v $(pwd):/app nonsteamlaunchers bash

# exit container
exit

Python virtual environment

Useful for the python module(s), but extra compared to the dev container portion that covers the core shell script.

# create virtual environment
python -m venv .venv

# activate virtual environment
source .venv/bin/activate

# install dependencies
python -m pip install -r requirements.txt 

Additional tooling

Additional tooling includes but is not limited to:

asdf

  • Install asdf
  • Usage
    # add python plugin
    asdf plugin-add python
    
    # install stable python
    asdf install python <latest|3.11.4>
    
    # set stable to system python
    asdf global python latest
    
    # add poetry asdf plugin
    asdf plugin-add poetry https://github.com/asdf-community/asdf-poetry.git
    
    # install latest version via asdf
    asdf install poetry <latest|1.5.1>
    
    # set latest version as default
    asdf global poetry latest

shellcheck

.shellcheckrc excludes various bash language rules. Useful to control noise vs. legitimate warnings/errors when using the shellcheck extension.

License ๐Ÿ“

This project is licensed under the MIT License. See the LICENSE file for more information.

nonsteamlaunchers-on-steam-deck's People

Contributors

moraroy avatar sysmoon14 avatar cchrkk avatar pythoninthegrass avatar zoullx avatar mertsalovda avatar joey451-og avatar kaetuun avatar liamdawe avatar wolfmad avatar callit avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.