Switch to full style
Post all Gimp scripts and script writing questions here
Post a reply

Folder for Exposure plugin

Thu Oct 12, 2023 7:10 am

Hi,

Exposure plugin

GIMP 2.10 on Linux

I have the exposure plugin download
exposure-blend.scm

Please advise which folder is for this plugin
/home/username/.config/GIMP/2.10/filters/
or
/home/username/.config/GIMP/2.10/plug-ins/

Thanks

Regards

Re: Folder for Exposure plugin

Thu Oct 12, 2023 8:14 am

satimis wrote:Hi,

Exposure plugin

GIMP 2.10 on Linux

I have the exposure plugin download
exposure-blend.scm

Please advise which folder is for this plugin
/home/username/.config/GIMP/2.10/filters/
or
/home/username/.config/GIMP/2.10/plug-ins/

Thanks

Regards

Neither. .scm files go into your scripts folder and I believe they have to be made executable.

Re: Folder for Exposure plugin

Thu Oct 12, 2023 9:21 am

Erisian wrote:
satimis wrote:Hi,

Exposure plugin

GIMP 2.10 on Linux

I have the exposure plugin download
exposure-blend.scm

Please advise which folder is for this plugin
/home/username/.config/GIMP/2.10/filters/
or
/home/username/.config/GIMP/2.10/plug-ins/

Thanks

Regards

Neither. .scm files go into your scripts folder and I believe they have to be made executable.

Hi,

$ ls -al Downloads/exposure-blend.scm
-rw-rw-r-- 1 satimis satimis 22361 Oct 12 19:56 Downloads/exposure-blend.scm

Yes, you're right. I have to make it executable running;
$ chmod +x Downloads/exposure-blend.scm

I wonder which folder of GIMP I have to store it so that I can find it on running GIMP ?

Regards

Re: Folder for Exposure plugin

Thu Oct 12, 2023 9:26 am

satimis wrote:
Erisian wrote:
satimis wrote:Hi,

Exposure plugin

GIMP 2.10 on Linux

I have the exposure plugin download
exposure-blend.scm

Please advise which folder is for this plugin
/home/username/.config/GIMP/2.10/filters/
or
/home/username/.config/GIMP/2.10/plug-ins/

Thanks

Regards

Neither. .scm files go into your scripts folder and I believe they have to be made executable.

Hi,

$ ls -al Downloads/exposure-blend.scm
-rw-rw-r-- 1 satimis satimis 22361 Oct 12 19:56 Downloads/exposure-blend.scm

Yes, you're right. I have to make it executable running;
$ chmod +x Downloads/exposure-blend.scm

I wonder which folder of GIMP I have to store it so that I can find it on running GIMP ?

Regards

It should be /home/username/.config/GIMP/2.10/scripts/

Re: Folder for Exposure plugin

Thu Oct 12, 2023 9:54 am

Erisian wrote:
- snip -
It should be /home/username/.config/GIMP/2.10/scripts/

Hi,

Thanks for your advice.

Performed following steps;

$ chmod +x Downloads/exposure-blend.scm
$ ls -al Downloads/exposure-blend.scm
-rwxrwxr-x 1 username username 22361 Oct 12 19:56 Downloads/exposure-blend.scm
$ cp Downloads/exposure-blend.scm /home/username/.config/GIMP/2.10/scripts/

Start GIMP with an image

Filter -> Exposure Blend
Align Exposures
Masks
Blend...
Reset Blend Details...

Which of them shall I use ?

Thanks

Regards

Re: Folder for Exposure plugin

Thu Oct 12, 2023 11:19 am

"chmod +x" is pointless, since it is a script (only useful for plug-ins)

Re: Folder for Exposure plugin

Thu Oct 12, 2023 7:52 pm

ofnuts wrote:"chmod +x" is pointless, since it is a script (only useful for plug-ins)

Thanks

Re: Folder for Exposure plugin

Thu Oct 19, 2023 10:51 pm

Plugins run as separate processes, though. Does GIMP’s Scheme interface know to explicitly run them via the Scheme interpreter, as opposed to launching them as executables?

Re: Folder for Exposure plugin

Fri Oct 20, 2023 3:10 am

ldo wrote:Plugins run as separate processes, though. Does GIMP’s Scheme interface know to explicitly run them via the Scheme interpreter, as opposed to launching them as executables?


AFAIK all scripts are run in a single script interpreter instance (a.k.a. "script server"). This may change in 3.0, because among other things the current method entails name collisions between functions declared by different SCM files).
Post a reply