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 to Gimp 3.0 #30

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
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
35 changes: 18 additions & 17 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.10 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 3.0 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.10 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-3.0 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 @@ -11,10 +11,10 @@ Please let me know if it works for you or if it fails.

### Prerequisites

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

* Gimp `2.10`
* `git` should be installed
- Gimp `3.0`
- `git` should be installed

### Basic Installation

Expand All @@ -34,24 +34,25 @@ sh -c "$(wget https://raw.githubusercontent.com/doctormo/GimpPs/master/tools/ins

### Mac installation

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

### Windows installation

#### via powershell:

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

#### via cmd:

# exit gimp first
cd %USERPROFILE%
ren .gimp-2.10 .gimp-2.10.backup
git clone --depth=1 https://github.com/doctormo/GimpPs.git .gimp-2.10
# exit gimp first
cd %USERPROFILE%
ren .gimp-3.0 .gimp-3.0.backup
git clone --depth=1 https://github.com/doctormo/GimpPs.git .gimp-3.0

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.
40 changes: 0 additions & 40 deletions controllerrc

This file was deleted.

4 changes: 2 additions & 2 deletions gimprc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# GIMP gimprc
#
#
# This is your personal gimprc file. Any variable defined in this file takes
# precedence over the value defined in the system-wide gimprc:
# /etc/gimp/2.0/gimprc
# /etc/gimp/3.0/gimprc
# Most values can be set within GIMP by changing some options in the
# Preferences dialog.

Expand Down
24 changes: 0 additions & 24 deletions gtkrc

This file was deleted.

137 changes: 0 additions & 137 deletions menurc

This file was deleted.

24 changes: 24 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[tasks.update_config]

alias = "up"
run = "git -C $HOME/.config/GIMP/3.0 pull origin develop"

[tasks.regenerate_config]

alias = "regen"
run = "git clone -b develop https://github.com/skyblue-jpn/GimpPs3.git $HOME/.config/GIMP/3.0"

[tasks.regenerate_config_master]

alias = "regen-master"
run = "git clone -b master https://github.com/skyblue-jpn/GimpPs3.git $HOME/.config/GIMP/3.0"

[tasks.clean_config]

alias = "clean"
run = "rm -rf $HOME/.config/GIMP/3.0"

[tasks.reset_config]

alias = "reset"
run = "mkdir $HOME/.config/GIMP/3.0"
6 changes: 0 additions & 6 deletions parasiterc

This file was deleted.

Loading