Skip to content

IroAlexis/buildertools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

A set of scripts that make it easy to build Wine, DXVK and VKD3D-Proton from source code.

Based on wine-tkg-git

Wine

Enable Damavand

export WINE_D3D_CONFIG="renderer=vulkan;VideoPciVendorID=0xc0de"

Enable winewayland

[HKEY_CURRENT_USER\\Software\\Wine\\Drivers]
"Graphics"="wayland,x11"

Enable fastsync

You need load NTsync module. For that, you have to check if ntsync.h is present in /usr/include/linux/ntsync.h then:

  • Load ntsync module at boot: echo "ntsync" >/etc/modules-load.d/ntsync.conf
  • Install udev rule for ntsync: echo "KERNEL==\"ntsync\", MODE=\"0644\"" > /etc/udev/rules.d/ntsync.rules
  • Reboot and verify if device ntsync is loading in /dev

Acknowledgements