forked from tkashkin/GameHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial Tweaks implementation (tkashkin#326)
`Utils.run*` refactoring
- Loading branch information
Showing
60 changed files
with
4,058 additions
and
2,398 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
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,7 @@ | ||
{ | ||
"id": "gamemode", | ||
"name": "Feral GameMode", | ||
"description": "Temporarily apply a set of optimizations to a game process and OS. Requires Feral GameMode to be installed", | ||
"url": "https://github.com/FeralInteractive/gamemode", | ||
"command": "gamemoderun ${command}" | ||
} |
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,67 @@ | ||
[ | ||
{ | ||
"id": "dx_dxvk_hud", | ||
"name": "DXVK: Show HUD", | ||
"description": "Enable DXVK HUD", | ||
"url": "https://github.com/doitsujin/dxvk#hud", | ||
"applicable_to": { | ||
"platforms": ["windows"], | ||
"compat": ["wine", "proton"] | ||
}, | ||
"env": { | ||
"DXVK_HUD": "devinfo,fps" | ||
} | ||
}, | ||
{ | ||
"id": "proton_dx_d9vk", | ||
"name": "Proton: Use D9VK", | ||
"description": "Use Vulkan-based D9VK instead of OpenGL-based WineD3D for D3D9", | ||
"url": "https://github.com/ValveSoftware/Proton#runtime-config-options", | ||
"applicable_to": { | ||
"platforms": ["windows"], | ||
"compat": ["proton"] | ||
}, | ||
"env": { | ||
"PROTON_USE_D9VK": "1" | ||
} | ||
}, | ||
{ | ||
"id": "proton_dx_wined3d", | ||
"name": "Proton: Use WineD3D", | ||
"description": "Use OpenGL-based WineD3D for D3D11 and D3D10 instead of Vulkan-based DXVK", | ||
"url": "https://github.com/ValveSoftware/Proton#runtime-config-options", | ||
"applicable_to": { | ||
"platforms": ["windows"], | ||
"compat": ["proton"] | ||
}, | ||
"env": { | ||
"PROTON_USE_WINED3D": "1" | ||
} | ||
}, | ||
{ | ||
"id": "proton_no_esync", | ||
"name": "Proton: Disable esync", | ||
"description": "Disable eventfd-based in-process synchronization primitives", | ||
"url": "https://github.com/ValveSoftware/Proton#runtime-config-options", | ||
"applicable_to": { | ||
"platforms": ["windows"], | ||
"compat": ["proton"] | ||
}, | ||
"env": { | ||
"PROTON_NO_ESYNC": "1" | ||
} | ||
}, | ||
{ | ||
"id": "proton_no_fsync", | ||
"name": "Proton: Disable fsync", | ||
"description": "Disable futex-based in-process synchronization primitives", | ||
"url": "https://github.com/ValveSoftware/Proton#runtime-config-options", | ||
"applicable_to": { | ||
"platforms": ["windows"], | ||
"compat": ["proton"] | ||
}, | ||
"env": { | ||
"PROTON_NO_FSYNC": "1" | ||
} | ||
} | ||
] |
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
Oops, something went wrong.