Compare commits

...

5 Commits

Author SHA1 Message Date
shvedes 89e116eb37 discontinued 2025-07-30 20:01:07 +02:00
shvedes 3a285712dc README.md update 2025-05-25 14:48:21 +02:00
shvedes 4854dad81e use $0 instead of hardcoded help menu 2025-05-25 13:17:50 +02:00
shvedes a365571566 do not verbose rm command 2025-05-25 13:15:45 +02:00
shvedes 03aa300dbf use wine instead of wine64 2025-05-25 12:54:21 +02:00
2 changed files with 9 additions and 4 deletions
+6 -1
View File
@@ -1,5 +1,10 @@
# Adobe Photoshop CC 2021 on Linux
## Discontinued
This project is no longer supported because I have lost the desire to maintain it. I remind you that this is not a standalone project, but a wrapper of [this](https://github.com/LinSoftWin/Photoshop-CC2022-Linux) repository, which in turn is maintained and actively updated. If you were a user of my project, please take a look at the work of [LinSoftWin](https://github.com/LinSoftWin).
## Disclaimer
By providing this software, I do not give any guarantees of its work. This script was inspired by the work of [LinSoftWin](https://github.com/LinSoftWin/Photoshop-CC2022-Linux). This is only its adaptation. This script will be maintained and developed until I get bored and/or have free time. PR is welcome.
@@ -19,7 +24,7 @@ Please note that this code is a piece of garbage. Although it works in most case
- GPU acceleration (no warranty to work)
**Tested on:**
- Arch Linux / CachyOS
- Arch Linux / CachyOS / NixOS / Linux Mint
- KDE Plasma 6.2 (Wayland) / Hyprland
- wine 9.19+ / wine-staging 9.20+ / ~~wine-cachyos 9.20+~~ window freezes
- AMD GPU
+3 -3
View File
@@ -76,7 +76,7 @@ on_interrupt() {
}
get_help() {
echo "Usage: ./install.sh [options...] <path>"
echo "Usage: $0 [options...] <path>"
echo " -a Use already existing Photoshop.tar.xz"
echo " -i Install Photoshop"
echo " -u <install path> Uninstall Photoshop"
@@ -185,7 +185,7 @@ is_path_exists() {
echo -e "$WARNING The specified path '${YELLOW}${1}${RESET}' already exists."
if ask_user "Do you want to ${RED}delete${RESET} previous installation?"; then
if rm -rfv "${1:?}" 2>>./install_log.log; then
if rm -rfv "${1:?}" &>>./install_log.log; then
echo -e "$LOG Deleted old installation."
else
echo -e "$ERROR Something went wrong."
@@ -449,7 +449,7 @@ install_launcher() {
echo "PHOTOSHOP=\"\$WINEPREFIX/drive_c/Program Files/Adobe Photoshop 2021/photoshop.exe\""
echo ""
echo "echo \"All logs are saved in \$LOG_FILE\""
echo "wine64 \"\$PHOTOSHOP\" \"\$@\" &> \"\$LOG_FILE\" "
echo "wine \"\$PHOTOSHOP\" \"\$@\" &> \"\$LOG_FILE\" "
} >"$LAUNCHER"
chmod +x "$LAUNCHER"