This is a fork of the geforcenow-electron app written in Electron, that wraps around the Xbox Cloud Gaming web browser implementation.
- Better performance - This forces the browser to use the GPU for hardware acceleration, which results in better performance. It also uses a Windows user agent by default, which apparently results in better performance as well. You can achieve the same results by using the web browser and enabling hardware acceleration and spoofing the user agent with extensions, but this is a lot easier.
- Better desktop integration - This app integrates with the desktop environment, allowing you to use the window manager to move and resize the window and launch it from the application launcher (which is crucial for the Steam Deck, as you can then add it as a non-Steam game).
- Better parity with the native Windows app - This app replicates some of the features of the native Windows app, such as hiding the mouse pointer when the controlled is being used.
- Discord Rich Presence - This app integrates with Discord, allowing you to show what you're playing on your Discord profile.
Currently the project is available on these repositories: AUR
- Go to the latest release.
- Download the specific file that best fits your disto.
- Install it
If you've installed it through your package manager, then it should already contain a launcher for it. Otherwise, run the xbox-cloud-gaming-electron
binary.
To toggle full-screen mode, use the F11
keyboard shortcut.
It's not a bug. You generally need VA-API for a smooth experience. If you don't notice any issues, then you can ignore this error and disable it with the --no-vaapi-warning
flag.
If you do however notice issues, please refer to your's distro's documentation on how to install and enable VA-API, as the package names and installation methods may vary.
You will also need libva-utils
installed so the program can verify you have VA-API enabled. It contains the vainfo
command, which will enable the program to cgeck if you have VA-API working. It might be under a different name depending on your distro or merged with the base package. Again, please refer to your distro's documentation.
This is an issue on Microsoft's side. If you click on the "Sign in" button, it will log you in again without a need to enter your credentials.
Currently, controller vibration is a preview feature. You can turn it on by clicking on your profile picture in the top right corner and enabling "Preview features" in the settings menu. You will need to restart the app for the changes to take effect. After that, enable "Controller vibration" in the "Audio & input" section.
A Flatpak version is planned, but it's not a priority at the moment. If you want to help with this, please open an issue. In the meantime, you can use the AppImage version (for example if you're on a Steam Deck).
These are the currently available flags:
Name | Description |
---|---|
--no-vaapi-warning |
Disables the VA-API warning |
--normal-user-agent |
Uses the default user agent instead of the Windows one |
--no-rpc |
Disables Discord Rich Presence |
--dont-hide-pointer |
Disables hiding the mouse pointer when you're using a controller |
You will need to install npm, the Node.js package manager. On most distributions, the package is simply called npm
.
Once you have npm, clone the wrapper to a convenient location:
git clone https://github.com/marzeq/xbox-cloud-gaming-electron.git
cd xbox-cloud-gaming-electron
npm install yarn
npx yarn
npx yarn build
On subsequent runs, npx yarn build
will be all that's required.
Simply pull the latest version of master and install any changed dependencies:
cd xbox-cloud-gaming
git checkout master
git pull
npx yarn
npx yarn build