forked from CastroFidel/PortWINE
Scripts version 1053
This commit is contained in:
@ -4,14 +4,16 @@
|
||||
#Battle.net-Setup.exe
|
||||
#Rating=5
|
||||
################################################
|
||||
export PW_VULKAN_USE=dxvk
|
||||
##export PW_VULKAN_USE=dxvk
|
||||
export LAUNCH_PARAMETERS=""
|
||||
export WINEDLLOVERRIDES="locationapi="
|
||||
export PW_DLL_INSTALL="vcrun2017 d3dx11_42 d3dx11_43"
|
||||
export PW_WINDOWS_VER=10
|
||||
export PW_NVAPI_DISABLE=1
|
||||
|
||||
ADD_IN_START_PORTWINE () {
|
||||
rm -fr "${PORT_WINE_PATH}/data/pfx/drive_c/ProgramData/Agent/data"
|
||||
rm -fr "${PORT_WINE_PATH}/data/pfx/drive_c/users/steamuser/Blizzard Entertainment/Battle.net/Cache"
|
||||
rm -fr "${PORT_WINE_PATH}/data/pfx/drive_c/users/${USER}/Blizzard Entertainment/Battle.net/Cache"
|
||||
rm -fr "${PORT_WINE_PATH}/data/pfx/drive_c/users/Public/Blizzard Entertainment/Battle.net/Cache"
|
||||
try_remove_file "${PORT_WINE_PATH}/data/pfx/drive_c/windows/Fonts/sourcehansans.ttc"
|
||||
}
|
@ -1,11 +1,9 @@
|
||||
#!/bin/bash
|
||||
#Author: xuser
|
||||
#Cyberpunk2077.exe
|
||||
#Rating=1-5
|
||||
################################################
|
||||
export PW_VULKAN_USE=vkd3d
|
||||
export PW_VKD3D_VER=2.1
|
||||
#Author: xuser
|
||||
#Cyberpunk2077.exe
|
||||
#Rating=1-5
|
||||
#####################examples###########################
|
||||
export PW_VULKAN_USE=vkd3d
|
||||
##export PW_COMMENT_DB="blablabla"
|
||||
export WINEDLLOVERRIDES="Crash*,REDEngineErrorReporter.exe="
|
||||
##export PW_DLL_INSTALL="d3dcompiler_47" # Install DDL in port prefix (used winetricks)
|
||||
|
@ -7,10 +7,10 @@
|
||||
export PW_VULKAN_USE=dxvk
|
||||
export WINEDLLOVERRIDES="galaxycommunication.exe=n"
|
||||
export LAUNCH_PARAMETERS="/runWithoutUpdating /deelevated"
|
||||
export PW_DLL_INSTALL="vcrun2019 vcrun6 mfc140"
|
||||
export PW_DLL_INSTALL="vcrun2017 vcrun6 mfc140"
|
||||
ADD_IN_START_PORTWINE ()
|
||||
{
|
||||
if [ -e "${WINEPREFIX}/drive_c/users/steamuser/Local Settings/Application Data/GOG.com/Galaxy/Configuration/config.json" ] ; then
|
||||
sed -i 's/"featureOverlay" : true,/"featureOverlay" : false,/' "${WINEPREFIX}/drive_c/users/steamuser/Local Settings/Application Data/GOG.com/Galaxy/Configuration/config.json"
|
||||
if [ -e "${WINEPREFIX}/drive_c/users/${USER}/Local Settings/Application Data/GOG.com/Galaxy/Configuration/config.json" ] ; then
|
||||
sed -i 's/"featureOverlay" : true,/"featureOverlay" : false,/' "${WINEPREFIX}/drive_c/${USER}/steamuser/Local Settings/Application Data/GOG.com/Galaxy/Configuration/config.json"
|
||||
fi
|
||||
}
|
@ -6,7 +6,7 @@
|
||||
##export PW_COMMENT_DB="blablabla"
|
||||
|
||||
##export PW_WINDOWS_VER=10 # Set windows version 10, 7 or XP
|
||||
export PW_DLL_INSTALL="d3dcompiler_43 d3dcompiler_47 d3dx9" # Install DDL in port prefix (used winetricks)
|
||||
export PW_DLL_INSTALL="vcrun2010 vcrun2012 vcrun2017 d3dcompiler_43 d3dcompiler_47 d3dx9" # Install DDL in port prefix (used winetricks)
|
||||
##export WINEDLLOVERRIDES="blabla=n,b"
|
||||
##export LAUNCH_PARAMETERS="('"+com_skipIntroVideo 1"' '"+com_skipSignInManager 1"')" # Additional launch options
|
||||
|
||||
@ -44,7 +44,35 @@ export PW_NVAPI_DISABLE=1
|
||||
|
||||
export STAGING_SHARED_MEMORY=0
|
||||
|
||||
ADD_IN_START_PORTWINE () {
|
||||
sed -i 's%key="EnableIgo" value="true"%key="EnableIgo" value="false"%g' "${WINEPREFIX}/drive_c/users/steamuser/Application Data/Origin/local_"*".xml"
|
||||
}
|
||||
#ADD_IN_START_PORTWINE () {
|
||||
# export PW_USER_TEMP="$WINEPREFIX/drive_c/users/${USER}/Temp"
|
||||
# if try_download "https://download.dm.origin.com/origin/live/OriginSetup.exe" "${PW_USER_TEMP}/OriginSetup.exe" ; then
|
||||
# PW_START_PROGRESS_BAR_BLOCK "Extracting files for update the Origin..."
|
||||
# unzip "${PW_USER_TEMP}/OriginSetup.exe" 'update/*.zip' -d "${PW_USER_TEMP}/"
|
||||
# unzip -o "${PW_USER_TEMP}/update/"*.zip -d "$WINEPREFIX/drive_c/Program Files (x86)/Origin/"
|
||||
# try_remove_dir "${PW_USER_TEMP}/update"
|
||||
# try_remove_file "${PW_USER_TEMP}/OriginSetup.exe"
|
||||
# PW_STOP_PROGRESS_BAR
|
||||
# PW_START_PROGRESS_BAR_CS "Starting the Origin..."
|
||||
|
||||
# check_origin_update () {
|
||||
# while :
|
||||
# do
|
||||
# sleep 3
|
||||
# if [ ! -z `pgrep Origin.exe | head -n 1` ] ; then
|
||||
# sleep 1
|
||||
# else
|
||||
# if [ ! -z `pgrep OriginSetup* | head -n 1` ] ; then
|
||||
# kill -n 9 `pgrep OriginSetup* | head -n 1`
|
||||
# fi
|
||||
# if [ ! -z `pgrep OriginThin* | head -n 1` ] ; then
|
||||
# kill -n 9 `pgrep OriginThin* | head -n 1`
|
||||
# fi
|
||||
# break
|
||||
# fi
|
||||
# done
|
||||
# }
|
||||
# check_origin_update &
|
||||
# fi
|
||||
#}
|
||||
|
||||
|
@ -16,11 +16,11 @@
|
||||
##export PW_DXR_ON=1
|
||||
##export PW_VULKAN_NO_ASYNC=1 # Disabled ASYNC for VULKAN
|
||||
##export PW_NVAPI_DISABLE=1
|
||||
##export PW_OLD_GL_STRING=0
|
||||
##export PW_HIDE_NVIDIA_GPU=0
|
||||
##export PW_FORCE_USE_VSYNC=2 # Vsync: 0-FORCE_OFF, 1-FORCE_ON, 2-BY_DEFAULT
|
||||
##export PW_VKD3D_FEATURE_LEVEL=0
|
||||
##export PW_DXGI_FROM_DXVK=0
|
||||
##export PW_OLD_GL_STRING=1
|
||||
##export PW_HIDE_NVIDIA_GPU=1
|
||||
##export PW_FORCE_USE_VSYNC=0 # Vsync: 0-FORCE_OFF, 1-FORCE_ON, 2-BY_DEFAULT
|
||||
##export PW_VKD3D_FEATURE_LEVEL=1
|
||||
##export PW_DXGI_FROM_DXVK=1
|
||||
##export PW_VIRTUAL_DESKTOP=1
|
||||
##export VKD3D_CONFIG=force_bindless_texel_buffer,multi_queue
|
||||
##export ENABLE_VKBASALT=1
|
||||
@ -30,17 +30,18 @@
|
||||
|
||||
##export PULSE_LATENCY_MSEC=60 # Fix crackling audio in games
|
||||
|
||||
##export PW_FORCE_DISABLED_GAMEMOD=0 # Force disabele gamemod
|
||||
##export PW_FORCE_DISABLED_GAMEMOD=1 # Force disabele gamemod
|
||||
##export PW_FORCE_LARGE_ADDRESS_AWARE=1 # Force Wine to enable the LARGE_ADDRESS_AWARE flag for all executables. Enabled by default.
|
||||
##export PW_NO_WRITE_WATCH=0 # Disable support for memory write watches in ntdll. This is a very dangerous hack and should only be applied if you have verified that the game can operate without write watches. This improves performance for some very specific games (e.g. CoreRT-based games).
|
||||
##export PW_HEAP_DELAY_FREE=0
|
||||
##export PW_NO_WRITE_WATCH=1 # Disable support for memory write watches in ntdll. This is a very dangerous hack and should only be applied if you have verified that the game can operate without write watches. This improves performance for some very specific games (e.g. CoreRT-based games).
|
||||
##export PW_HEAP_DELAY_FREE=1
|
||||
##export PW_WINE_ALLOW_XIM=1 # Disable XIM support until libx11 >= 1.7 is widespread
|
||||
|
||||
##export WINEARCH=win32 # defaut = win64
|
||||
##export WINEPREFIX=
|
||||
|
||||
##export PW_WINEDBG_DISABLE=1 # Disabled WINEDBG
|
||||
##export PW_USE_TERMINAL=0 # Force run in terminal
|
||||
##export PW_LOG=0 # Enable debug mode fo terminal
|
||||
##export PW_USE_TERMINAL=1 # Force run in terminal
|
||||
##export PW_LOG=1 # Enable debug mode fo terminal
|
||||
##export PW_GUI_DISABLED_CS=1 # 1 = disabled GUI
|
||||
|
||||
##ADD_IN_START_PORTWINE () { commands ; }
|
||||
|
@ -1,14 +1,14 @@
|
||||
#!/bin/bash
|
||||
#Author: xuser
|
||||
#dontstarve.exe
|
||||
#Rating=1-5
|
||||
################################################
|
||||
export PW_VULKAN_USE=0
|
||||
#Author: xuser
|
||||
#dontstarve.exe
|
||||
#Rating=1-5
|
||||
################################################
|
||||
export PW_VULKAN_USE=0
|
||||
#####################examples###########################
|
||||
##export PW_COMMENT_DB="blablabla"
|
||||
##export PW_VULKAN_USE=dxvk # dxvk, vkd3d or 0 for OpenGL
|
||||
##export WINEDLLOVERRIDES="blabla=n,b"
|
||||
##export PW_DLL_INSTALL="vcrun2017 d3dcompiler_43" # Install DDL in port prefix (used winetricks)
|
||||
export PW_DLL_INSTALL="d3dx9 d3dcompiler_43" # Install DDL in port prefix (used winetricks)
|
||||
##export PW_LOG=0 # Enable debug mode fo terminal
|
||||
##export PW_NO_FSYNC=1 # Do not use futex-based in-process synchronization primitives. (Automatically disabled on systems with no FUTEX_WAIT_MULTIPLE support.
|
||||
##export PW_NO_ESYNC=1 # Do not use eventfd-based in-process synchronization primitives
|
||||
|
46
data_from_portwine/scripts/portwine_db/eve
Normal file
46
data_from_portwine/scripts/portwine_db/eve
Normal file
@ -0,0 +1,46 @@
|
||||
#!/bin/bash
|
||||
#Author: PortWINE-Linux.ru
|
||||
#eve.exe
|
||||
#evelauncher.exe
|
||||
#Rating=5
|
||||
#####################examples###########################
|
||||
##export PW_COMMENT_DB="blablabla"
|
||||
|
||||
export PW_WINDOWS_VER=10 # Set windows version 10, 7 or XP
|
||||
export PW_DLL_INSTALL="vcrun2017 d3dcompiler_47" # Install DDL in port prefix (used winetricks)
|
||||
export WINEDLLOVERRIDES="concrt140,msvcp140,msvcp140_1,msvcp140_2,d3dcompiler_47=n"
|
||||
##export LAUNCH_PARAMETERS="('"+com_skipIntroVideo 1"' '"+com_skipSignInManager 1"')" # Additional launch options
|
||||
|
||||
##export PW_DXVK_VER=1.8.1
|
||||
##export PW_VKD3D_VER=2.2
|
||||
##export PW_DXR_ON=1
|
||||
##export PW_VULKAN_NO_ASYNC=1 # Disabled ASYNC for VULKAN
|
||||
##export PW_NVAPI_DISABLE=1
|
||||
##export PW_OLD_GL_STRING=0
|
||||
##export PW_HIDE_NVIDIA_GPU=0
|
||||
##export PW_FORCE_USE_VSYNC=2 # Vsync: 0-FORCE_OFF, 1-FORCE_ON, 2-BY_DEFAULT
|
||||
##export PW_VKD3D_FEATURE_LEVEL=0
|
||||
##export PW_DXGI_FROM_DXVK=0
|
||||
##export PW_VIRTUAL_DESKTOP=1
|
||||
##export VKD3D_CONFIG=force_bindless_texel_buffer,multi_queue
|
||||
##export ENABLE_VKBASALT=1
|
||||
|
||||
##export PW_NO_FSYNC=1 # Do not use futex-based in-process synchronization primitives. (Automatically disabled on systems with no FUTEX_WAIT_MULTIPLE support.
|
||||
##export PW_NO_ESYNC=1 # Do not use eventfd-based in-process synchronization primitives
|
||||
|
||||
##export PULSE_LATENCY_MSEC=60 # Fix crackling audio in games
|
||||
|
||||
##export PW_FORCE_DISABLED_GAMEMOD=0 # Force disabele gamemod
|
||||
##export PW_FORCE_LARGE_ADDRESS_AWARE=1 # Force Wine to enable the LARGE_ADDRESS_AWARE flag for all executables. Enabled by default.
|
||||
##export PW_NO_WRITE_WATCH=0 # Disable support for memory write watches in ntdll. This is a very dangerous hack and should only be applied if you have verified that the game can operate without write watches. This improves performance for some very specific games (e.g. CoreRT-based games).
|
||||
##export PW_HEAP_DELAY_FREE=0
|
||||
|
||||
##export WINEARCH=win32 # defaut = win64
|
||||
##export WINEPREFIX=
|
||||
|
||||
##export PW_WINEDBG_DISABLE=1 # Disabled WINEDBG
|
||||
##export PW_USE_TERMINAL=0 # Force run in terminal
|
||||
##export PW_LOG=0 # Enable debug mode fo terminal
|
||||
##export PW_GUI_DISABLED_CS=1 # 1 = disabled GUI
|
||||
|
||||
##ADD_IN_START_PORTWINE () { commands ; }
|
@ -3,7 +3,7 @@
|
||||
#wgc.exe
|
||||
#Rating=5
|
||||
################################################
|
||||
export PW_VULKAN_USE=dxvk #dxvk, vkd3d or 0 for OpenGL
|
||||
#export PW_VULKAN_USE=dxvk #dxvk, vkd3d or 0 for OpenGL
|
||||
export LAUNCH_PARAMETERS="--disable-gpu" # Additional launch options
|
||||
export PW_USE_TERMINAL=1
|
||||
export PW_WINDOWS_VER=7 # Set windows version 10, 7 or XP
|
||||
|
41
data_from_portwine/scripts/portwine_db/wot_encore_install_ru
Normal file
41
data_from_portwine/scripts/portwine_db/wot_encore_install_ru
Normal file
@ -0,0 +1,41 @@
|
||||
#!/bin/bash
|
||||
#Author: user
|
||||
#wot_encore_install_ru.exe
|
||||
#Rating=1-5
|
||||
################################################
|
||||
export PW_VULKAN_USE=dxvk
|
||||
export PW_USE_TERMINAL=1
|
||||
export WINEPREFIX="${PORT_WINE_PATH}/data/pfx_dotnet"
|
||||
export PW_DLL_INSTALL="dotnet40 vcrun2017 vcrun6 mfc42 vb6run physx"
|
||||
export PW_COMMENT_DB="World Of Tanks EnCore Installer"
|
||||
## export DXVK_HUD=fps,devinfo
|
||||
## export PW_MANGOHUD=1
|
||||
#####################examples###########################
|
||||
PW_INSTALL_DOTNET40 () {
|
||||
export DN=dotNetFx40_Full_x86_x64.exe
|
||||
export mscor=mscorsvw.exe
|
||||
export KILL_MSCOR=0
|
||||
export DN_INST_SUCC=0
|
||||
|
||||
while [ ! -z "`ps -ax | grep PortProton | grep -m1 'start.sh' | awk '{print $1}'`" ] ; do
|
||||
echo "PID parrent start.sh was found"
|
||||
sleep 5
|
||||
while [ ! -z `pidof -s $DN` ] ; do
|
||||
echo "$DN is runing.. Wait..."
|
||||
sleep 5
|
||||
export DN_INST_SUCC=1
|
||||
done
|
||||
while [ ! -z `pgrep "${mscor}" | head -n 1` ] && [ -z `pidof -s $DN` ] ; do
|
||||
echo "$mscor was found. Kill it..."
|
||||
kill -n 9 `pgrep "${mscor}" | head -n 1`
|
||||
sleep 1
|
||||
export KILL_MSCOR=1
|
||||
done
|
||||
if [ "$KILL_MSCOR" != 0 ] && [ "$DN_INST_SUCC" != 0 ] && [ -z `pidof -s $DN` ] && [ -z `pgrep "${mscor}" | head -n 1` ]; then
|
||||
echo "All $mscor killed"
|
||||
break
|
||||
fi
|
||||
done
|
||||
}
|
||||
PW_INSTALL_DOTNET40 &
|
||||
|
Reference in New Issue
Block a user