Compare commits

...

3 Commits
v1.1 ... master

Author SHA1 Message Date
victor ad157c73aa user.reg notfound fixed by 10s sleep 2021-07-09 19:34:41 +04:30
victor d61e7073f1 merge pull request 2021-04-23 13:54:42 +04:30
Elyesa f8fc69317c
Change wine to wine64
There is a bug in wine when used in combination with Mesa 21.
X Error of failed request:  GLXBadFBConfig
https://bugs.winehq.org/show_bug.cgi?id=50859
Changing it to wine64 works.
2021-04-19 17:11:07 +03:00
2 changed files with 4 additions and 2 deletions

View File

@ -32,6 +32,8 @@ function main() {
error "prefix config failed :("
fi
sleep 10
if [ -f "$WINE_PREFIX/user.reg" ];then
#add dark mod
set_dark_mod
@ -42,7 +44,7 @@ function main() {
#create resources directory we extract downloaded file into this and will be deleted after installation more like /tmp
rmdir_if_exist $RESOURCES_PATH
#install photoshop
#install illustrator
sleep 3
install_illustratorCC
sleep 5

View File

@ -13,6 +13,6 @@ WINE_PREFIX="$SCR_PATH/prefix"
export WINEPREFIX="$WINE_PREFIX"
wine "$SCR_PATH/IllustratorCC17/IllustratorCC64.exe"
wine64 "$SCR_PATH/IllustratorCC17/IllustratorCC64.exe"