mirror of
https://github.com/shvedes/photoshop-linux.git
synced 2026-06-22 15:02:42 +00:00
Compare commits
5 Commits
bc7d519ac4
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 89e116eb37 | |||
| 3a285712dc | |||
| 4854dad81e | |||
| a365571566 | |||
| 03aa300dbf |
@@ -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
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user