mirror of
https://github.com/shvedes/photoshop-linux.git
synced 2025-09-09 04:35:00 +00:00
11 lines
308 B
Bash
Executable File
11 lines
308 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export WINEPREFIX="$HOME/Photoshop"
|
|
export DXVK_LOG_PATH="$WINEPREFIX/dxvk_cache"
|
|
export DXVK_STATE_CACHE_PATH="$WINEPREFIX/dxvk_cache"
|
|
export PHOTOSHOP="$WINEPREFIX/drive_c/Program Files/Adobe Photoshop 2021/photoshop.exe"
|
|
|
|
FILE_PATH=$(winepath -w "$1")
|
|
|
|
wine64 "$PHOTOSHOP" $FILE_PATH
|