-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Steam DB and reg Add LW_REGPATCH_DIR registry_patch
- Loading branch information
Showing
9 changed files
with
97 additions
and
12 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 was deleted.
Oops, something went wrong.
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,11 @@ | ||
#!/bin/bash | ||
check_win_version '10' | ||
check_exe_args "-no-cef-sandbox -opengl" | ||
if [[ -f "$LW_REGPATCH_DIR/steam.reg" && \ | ||
! -n "$(grep -A2 "\[Software.*Wine.*AppDefaults.*steam.exe\]" \ | ||
"$WINEPREFIX/user.reg"|grep -wo 'win7')" ]] | ||
then | ||
DISABLE_MANGOHUD=1 DISABLE_VKBASALT=1 "$WINE" \ | ||
regedit "$LW_REGPATCH_DIR/steam.reg" &>/dev/null | ||
try_shutdown_wine | ||
fi |
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
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,64 @@ | ||
Windows Registry Editor Version 5.00 | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\AppDefaults\steam.exe\DllOverrides] | ||
"wineoss.drv"="N" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\AppDefaults\steam.exe] | ||
"Version"="win7" | ||
|
||
[HKEY_CURRENT_USER\Software\Valve\Steam] | ||
"DWriteEnable"="dword:00000000" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | ||
"Lucida Console"="MS Sans Serif" | ||
|
||
HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements | ||
"Meiryo"="Source Han Sans TC" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | ||
"Meiryo"="Source Han Sans SC" | ||
|
||
[HKEY_CURRENT_USER\Software\Valve\Steam] | ||
"GPUAccelWebViews"="dword:1" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | ||
"Meiryo"="Microsoft YaHei" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\DllOverrides] | ||
"msxml3"="native,builtin" | ||
|
||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts] | ||
"Source Han Sans SC Bold"="C:\Windows\fonts\SourceHanSansSC-Bold.otf" | ||
|
||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts] | ||
"Source Han Sans SC ExtraLight"="C:\Windows\fonts\SourceHanSansSC-ExtraLight.otf" | ||
|
||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts] | ||
"Source Han Sans SC Heavy"="C:\Windows\fonts\SourceHanSansSC-Heavy.otf" | ||
|
||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts] | ||
"Source Han Sans SC Light"="C:\Windows\fonts\SourceHanSansSC-Light.otf" | ||
|
||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts] | ||
"Source Han Sans SC Medium"="C:\Windows\fonts\SourceHanSansSC-Medium.ot" | ||
|
||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts] | ||
"Source Han Sans SC Normal"="C:\Windows\fonts\SourceHanSansSC-Normal.otf" | ||
|
||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts] | ||
"Source Han Sans SC Regular"="C:\Windows\fonts\SourceHanSansSC-Regular.otf" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | ||
"SimSun"="Source Han Sans SC Regular" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | ||
"宋体"="Source Han Sans SC Regular" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | ||
"新宋体"="Source Han Sans SC Regular" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | ||
"NSimSun"="Source Han Sans SC Regular" | ||
|
||
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | ||
"Microsoft YaHei UI"="Source Han Sans SC" |