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 documentation to specify how to install in GIMP 2.10 #116

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
15 changes: 15 additions & 0 deletions GIMP/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,24 @@

Simply copy the coatools_exporter.py into the GIMP plug-ins folder.

For GIMP 2.8:

- on Linux this is /home/YOU/.gimp2.8/plug-ins/
- on Windows this is C:\Users\YOU\.gimp2.8\plug-ins

For GIMP 2.10:

- on Linux this is `$HOME/.config/GIMP/2.10/plug-ins`

You can type the following on a terminal to install it:

```
mkdir -p $HOME/.config/GIMP/2.10/plug-ins
cd $HOME/.config/GIMP/2.10/plug-ins
wget https://raw.githubusercontent.com/ndee85/coa_tools/master/GIMP/coatools_exporter.py
chmod u+x coatools_exporter.py
```

You should find it under File>Export to CoaTools... after restarting GIMP.

Note that the .gimp2.8 folder may be hidden.
Expand Down