-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add documentation for titanfall compatibility tools
- Loading branch information
Showing
2 changed files
with
65 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Titanfall Utilities & Compatibility Tools | ||
|
||
## Viper | ||
|
||
Viper is a launcher/updater for Titanfall2 Northstar Client. The usage is simple, add it to your system packages | ||
and run `viper` in your terminal. The launcher will guide you through the rest of the process. | ||
|
||
## NorthstarProton | ||
|
||
NorthstarProton is a Proton build based on TKG's proton-tkg build system to run the Northstar client on | ||
Linux and SteamDeck, along with some enhancements out-of-the-box. | ||
|
||
To use `northstar-proton`, you must add it to your steam compatibility tools path. | ||
|
||
A simple implementation would be to use the overlay, similar to proton-ge: | ||
|
||
```nix | ||
nixpkgs.overlays = [ | ||
(_: prev: { | ||
steam = prev.steam.override { | ||
extraProfile = "export STEAM_EXTRA_COMPAT_TOOLS_PATHS='${inputs.nix-gaming.packages.${pkgs.system}.northstar-proton}'"; | ||
}; | ||
}) | ||
]; | ||
``` | ||
|
||
## FlightCore | ||
|
||
FlightCore is a launcher/updater for Titanfall2 Northstar Client. Currently not available due to a bug with Tauri disallowing extracted AppImages. |