Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install script to Gimp 2.10 #24

Merged
merged 3 commits into from
Jan 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
To help a fellow deviant, I've put together a download that anyone with Gimp 2.8 on Linux can use to make their copy of Gimp look more like Adobe Photoshop and make people more comfortable.
To help a fellow deviant, I've put together a download that anyone with Gimp 2.10 on Linux can use to make their copy of Gimp look more like Adobe Photoshop and make people more comfortable.

I've taken various bits of guides online and various tweaks.
All you have to do is download the file, unzip it.
Then in the file manager go to your home folder, show hidden files, delete or move your old .gimp-2.8 configuration folder out of the way, and replace with the new one.
Then in the file manager go to your home folder, show hidden files, delete or move your old .gimp-2.10 configuration folder out of the way, and replace with the new one.
Then load Gimp.

Please let me know if it works for you or if it fails.
Expand All @@ -13,7 +13,7 @@ Please let me know if it works for you or if it fails.

__Disclaimer:__ _GimpPs supports Windows, but works best on OS X and Linux._

* Gimp `2.8`
* Gimp `2.10`
* `git` should be installed

### Basic Installation
Expand All @@ -36,22 +36,22 @@ sh -c "$(wget https://raw.githubusercontent.com/doctormo/GimpPs/master/tools/ins

# exit gimp first
cd $HOME/Library/Application\ Support/GIMP
mv 2.8 2.8.backup
git clone --depth=1 https://github.com/doctormo/GimpPs.git 2.8
mv 2.10 2.10.backup
git clone --depth=1 https://github.com/doctormo/GimpPs.git 2.10

### Windows installation

#### via powershell:

# exit gimp first
cd $Env:UserProfile
mv .gimp-2.8 .gimp-2.8.backup
git clone --depth=1 https://github.com/doctormo/GimpPs.git .gimp-2.8
mv .gimp-2.10 .gimp-2.10.backup
git clone --depth=1 https://github.com/doctormo/GimpPs.git .gimp-2.10

#### via cmd:

# exit gimp first
cd %USERPROFILE%
ren .gimp-2.8 .gimp-2.8.backup
git clone --depth=1 https://github.com/doctormo/GimpPs.git .gimp-2.8
People generally get biased in the discussion of GIMP Vs Photoshop but they don't know how powerful GIMP really is.You can do all the effects of you use GIMP Wisely.
ren .gimp-2.10 .gimp-2.10.backup
git clone --depth=1 https://github.com/doctormo/GimpPs.git .gimp-2.10
People generally get biased in the discussion of GIMP Vs Photoshop but they don't know how powerful GIMP really is. You can do all the effects of you use GIMP Wisely.
4 changes: 2 additions & 2 deletions tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ main() {
exit 1
fi

version='2.8'
version='2.10'
gimp_path_version_string=$($gimp_path --version)
if echo "$gimp_path_version_string" | grep -qvF "$version"; then
printf "${YELLOW}Gimp version is not installed!${NORMAL} Please install Gimp $version first!\n"
Expand All @@ -44,7 +44,7 @@ main() {
exit 1
}

gimp_ps_directory="$HOME/.gimp-$version"
gimp_ps_directory="$HOME/.config/GIMP/$version"

# Backup previous directory, if any
if [ -e "$gimp_ps_directory" ]; then
Expand Down