Re: add-apt-repository

2016-03-26 Thread Brien Dieterle
Oh is it asking you to confirm adding the ppa and hitting enter is like
yes?  If so try adding a -y
http://manpages.ubuntu.com/manpages/wily/man1/add-apt-repository.1.html

You could add -r to remove them and try again.
On Mar 26, 2016 9:14 PM, "Michael"  wrote:

> no they all returned the same error. I just didn't include the full
> print out because it was redundant. When I run the command without the \r
> they will all run without error after I press the enter. however, because
> the ppa is already installed it says that nothing has changed.
>
> On Sun, Mar 27, 2016 at 12:09 AM, Brien Dieterle  wrote:
>
>> The "do" will execute the command without a /r, but it didn't break the
>> command either.  It looks like one of your ppa does not support the version
>> of your Ubuntu.  I bet the rest of them added OK though.  You should see
>> them when you run
>> apt-cache policy
>> On Mar 26, 2016 8:47 PM, "Michael"  wrote:
>>
>>> I was wondering what I should do to enter a carriage return after each
>>> add-apt and I didn't want to ask so I did a search for the information.
>>> I discovered that to do it I just need to put a '\r'. Cool? I thought
>>> so until I ran the command. After running the command it spat out:
>>>
>>> $ for rep in ppa:dhor/myway ppa:hugin/hugin-builds
>>> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8
>>> ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do sudo
>>> add-apt-repository $rep\r ; done
>>> [sudo] password for bmike1:
>>> 'This PPA does not support trusty'
>>> Cannot add PPA: ''This PPA does not support trusty''.
>>>
>>> I'm pretty sure the problem is the \r because it doesn't say that when I
>>> hit the return key.
>>> My websearch was fruitless so. will I just have to press enter
>>>
>>> On Sat, Mar 26, 2016 at 9:23 PM, Michael  wrote:
>>>
 DUH! I should have looked at it and figured it out. Thanks for that
 buddy.

 On Sat, Mar 26, 2016 at 8:38 PM, Brien Dieterle 
 wrote:

> Put the sudo in front of the add add repo command, or see this
> http://stackoverflow.com/questions/10889072/using-sudo-with-for-loop
> On Mar 25, 2016 8:00 PM, "Michael"  wrote:
>
>> not quite:
>>
>> sudo for rep in ppa:dhor/myway ppa:hugin/hugin-builds
>> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8
>> ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do
>> add-apt-repository $rep ; done
>> bash: syntax error near unexpected token `do'
>>
>>
>> On Fri, Mar 25, 2016 at 9:57 PM, Rusty Carruth <
>> rustyca...@descomp.com> wrote:
>>
>>>
>>>
>>> On 03/25/2016 01:30 PM, Carruth, Rusty wrote:
>>>
>>> for rep in   < whatever3> ; do
>>> add-apt-repository $rep ; done
>>>
>>>
>>>
>>> There.  A command that will take a list of repos.  And if you did
>>> that a lot, make it an alias or a function:
>>>
>>>
>>>
>>> function addrepos() { for rep in $* ; do add-apt-repository $rep ;
>>> done ; }
>>>
>>>
>>>
>>> Put in bashrc or whatever and there you go, a single command.
>>>
>>>
>>>
>>>
>>>
>>> *From:* plug-discuss-boun...@lists.phxlinux.org [
>>> mailto:plug-discuss-boun...@lists.phxlinux.org
>>> ] *On Behalf Of *Michael
>>>
>>>
>>>
>>> bummer. thanks for the news!
>>>
>>>
>>>
>>> On Fri, Mar 25, 2016 at 1:01 PM, Brian Cluff 
>>> wrote:
>>>
>>> add-apt-repository only takes a single repository at a time.
>>>
>>> Brian
>>>
>>>
>>>
>>> On 03/25/2016 06:10 AM, Michael wrote:
>>>
>>> does  'add-apt-repository ' work like 'apt-get install
>>> ' where you can just list the repositories after one
>>> ' add-apt-repository?
>>>
>>> 'add-apt-repository'
>>>
>>>
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



 --
 :-)~MIKE~(-:

>>>
>>>
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>> 

Re: add-apt-repository

2016-03-26 Thread Michael
no they all returned the same error. I just didn't include the full
print out because it was redundant. When I run the command without the \r
they will all run without error after I press the enter. however, because
the ppa is already installed it says that nothing has changed.

On Sun, Mar 27, 2016 at 12:09 AM, Brien Dieterle  wrote:

> The "do" will execute the command without a /r, but it didn't break the
> command either.  It looks like one of your ppa does not support the version
> of your Ubuntu.  I bet the rest of them added OK though.  You should see
> them when you run
> apt-cache policy
> On Mar 26, 2016 8:47 PM, "Michael"  wrote:
>
>> I was wondering what I should do to enter a carriage return after each
>> add-apt and I didn't want to ask so I did a search for the information.
>> I discovered that to do it I just need to put a '\r'. Cool? I thought
>> so until I ran the command. After running the command it spat out:
>>
>> $ for rep in ppa:dhor/myway ppa:hugin/hugin-builds
>> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8
>> ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do sudo
>> add-apt-repository $rep\r ; done
>> [sudo] password for bmike1:
>> 'This PPA does not support trusty'
>> Cannot add PPA: ''This PPA does not support trusty''.
>>
>> I'm pretty sure the problem is the \r because it doesn't say that when I
>> hit the return key.
>> My websearch was fruitless so. will I just have to press enter
>>
>> On Sat, Mar 26, 2016 at 9:23 PM, Michael  wrote:
>>
>>> DUH! I should have looked at it and figured it out. Thanks for that
>>> buddy.
>>>
>>> On Sat, Mar 26, 2016 at 8:38 PM, Brien Dieterle 
>>> wrote:
>>>
 Put the sudo in front of the add add repo command, or see this
 http://stackoverflow.com/questions/10889072/using-sudo-with-for-loop
 On Mar 25, 2016 8:00 PM, "Michael"  wrote:

> not quite:
>
> sudo for rep in ppa:dhor/myway ppa:hugin/hugin-builds
> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8
> ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do
> add-apt-repository $rep ; done
> bash: syntax error near unexpected token `do'
>
>
> On Fri, Mar 25, 2016 at 9:57 PM, Rusty Carruth  > wrote:
>
>>
>>
>> On 03/25/2016 01:30 PM, Carruth, Rusty wrote:
>>
>> for rep in   < whatever3> ; do
>> add-apt-repository $rep ; done
>>
>>
>>
>> There.  A command that will take a list of repos.  And if you did
>> that a lot, make it an alias or a function:
>>
>>
>>
>> function addrepos() { for rep in $* ; do add-apt-repository $rep ;
>> done ; }
>>
>>
>>
>> Put in bashrc or whatever and there you go, a single command.
>>
>>
>>
>>
>>
>> *From:* plug-discuss-boun...@lists.phxlinux.org [
>> mailto:plug-discuss-boun...@lists.phxlinux.org
>> ] *On Behalf Of *Michael
>>
>>
>>
>> bummer. thanks for the news!
>>
>>
>>
>> On Fri, Mar 25, 2016 at 1:01 PM, Brian Cluff 
>> wrote:
>>
>> add-apt-repository only takes a single repository at a time.
>>
>> Brian
>>
>>
>>
>> On 03/25/2016 06:10 AM, Michael wrote:
>>
>> does  'add-apt-repository ' work like 'apt-get install
>> ' where you can just list the repositories after one
>> ' add-apt-repository?
>>
>> 'add-apt-repository'
>>
>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>>
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> 

Re: add-apt-repository

2016-03-26 Thread Brien Dieterle
The "do" will execute the command without a /r, but it didn't break the
command either.  It looks like one of your ppa does not support the version
of your Ubuntu.  I bet the rest of them added OK though.  You should see
them when you run
apt-cache policy
On Mar 26, 2016 8:47 PM, "Michael"  wrote:

> I was wondering what I should do to enter a carriage return after each
> add-apt and I didn't want to ask so I did a search for the information.
> I discovered that to do it I just need to put a '\r'. Cool? I thought
> so until I ran the command. After running the command it spat out:
>
> $ for rep in ppa:dhor/myway ppa:hugin/hugin-builds ppa:mc3man/trusty-media
> ppa:nilarimogard/webupd8 ppa:otto-kesselgulasch/gimp
> ppa:yannubuntu/boot-repair; do sudo add-apt-repository $rep\r ; done
> [sudo] password for bmike1:
> 'This PPA does not support trusty'
> Cannot add PPA: ''This PPA does not support trusty''.
>
> I'm pretty sure the problem is the \r because it doesn't say that when I
> hit the return key.
> My websearch was fruitless so. will I just have to press enter
>
> On Sat, Mar 26, 2016 at 9:23 PM, Michael  wrote:
>
>> DUH! I should have looked at it and figured it out. Thanks for that buddy.
>>
>> On Sat, Mar 26, 2016 at 8:38 PM, Brien Dieterle  wrote:
>>
>>> Put the sudo in front of the add add repo command, or see this
>>> http://stackoverflow.com/questions/10889072/using-sudo-with-for-loop
>>> On Mar 25, 2016 8:00 PM, "Michael"  wrote:
>>>
 not quite:

 sudo for rep in ppa:dhor/myway ppa:hugin/hugin-builds
 ppa:mc3man/trusty-media ppa:nilarimogard/webupd8
 ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do
 add-apt-repository $rep ; done
 bash: syntax error near unexpected token `do'


 On Fri, Mar 25, 2016 at 9:57 PM, Rusty Carruth 
 wrote:

>
>
> On 03/25/2016 01:30 PM, Carruth, Rusty wrote:
>
> for rep in   < whatever3> ; do
> add-apt-repository $rep ; done
>
>
>
> There.  A command that will take a list of repos.  And if you did that
> a lot, make it an alias or a function:
>
>
>
> function addrepos() { for rep in $* ; do add-apt-repository $rep ;
> done ; }
>
>
>
> Put in bashrc or whatever and there you go, a single command.
>
>
>
>
>
> *From:* plug-discuss-boun...@lists.phxlinux.org [
> mailto:plug-discuss-boun...@lists.phxlinux.org
> ] *On Behalf Of *Michael
>
>
>
> bummer. thanks for the news!
>
>
>
> On Fri, Mar 25, 2016 at 1:01 PM, Brian Cluff 
> wrote:
>
> add-apt-repository only takes a single repository at a time.
>
> Brian
>
>
>
> On 03/25/2016 06:10 AM, Michael wrote:
>
> does  'add-apt-repository ' work like 'apt-get install
> ' where you can just list the repositories after one
> ' add-apt-repository?
>
> 'add-apt-repository'
>
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



 --
 :-)~MIKE~(-:

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: add-apt-repository

2016-03-26 Thread Michael
I was wondering what I should do to enter a carriage return after each
add-apt and I didn't want to ask so I did a search for the information.
I discovered that to do it I just need to put a '\r'. Cool? I thought
so until I ran the command. After running the command it spat out:

$ for rep in ppa:dhor/myway ppa:hugin/hugin-builds ppa:mc3man/trusty-media
ppa:nilarimogard/webupd8 ppa:otto-kesselgulasch/gimp
ppa:yannubuntu/boot-repair; do sudo add-apt-repository $rep\r ; done
[sudo] password for bmike1:
'This PPA does not support trusty'
Cannot add PPA: ''This PPA does not support trusty''.

I'm pretty sure the problem is the \r because it doesn't say that when I
hit the return key.
My websearch was fruitless so. will I just have to press enter

On Sat, Mar 26, 2016 at 9:23 PM, Michael  wrote:

> DUH! I should have looked at it and figured it out. Thanks for that buddy.
>
> On Sat, Mar 26, 2016 at 8:38 PM, Brien Dieterle  wrote:
>
>> Put the sudo in front of the add add repo command, or see this
>> http://stackoverflow.com/questions/10889072/using-sudo-with-for-loop
>> On Mar 25, 2016 8:00 PM, "Michael"  wrote:
>>
>>> not quite:
>>>
>>> sudo for rep in ppa:dhor/myway ppa:hugin/hugin-builds
>>> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8
>>> ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do
>>> add-apt-repository $rep ; done
>>> bash: syntax error near unexpected token `do'
>>>
>>>
>>> On Fri, Mar 25, 2016 at 9:57 PM, Rusty Carruth 
>>> wrote:
>>>


 On 03/25/2016 01:30 PM, Carruth, Rusty wrote:

 for rep in   < whatever3> ; do add-apt-repository
 $rep ; done



 There.  A command that will take a list of repos.  And if you did that
 a lot, make it an alias or a function:



 function addrepos() { for rep in $* ; do add-apt-repository $rep ; done
 ; }



 Put in bashrc or whatever and there you go, a single command.





 *From:* plug-discuss-boun...@lists.phxlinux.org [
 mailto:plug-discuss-boun...@lists.phxlinux.org
 ] *On Behalf Of *Michael



 bummer. thanks for the news!



 On Fri, Mar 25, 2016 at 1:01 PM, Brian Cluff  wrote:

 add-apt-repository only takes a single repository at a time.

 Brian



 On 03/25/2016 06:10 AM, Michael wrote:

 does  'add-apt-repository ' work like 'apt-get install
 ' where you can just list the repositories after one
 ' add-apt-repository?

 'add-apt-repository'



 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.phxlinux.org/mailman/listinfo/plug-discuss

>>>
>>>
>>>
>>> --
>>> :-)~MIKE~(-:
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: add-apt-repository

2016-03-26 Thread Michael
DUH! I should have looked at it and figured it out. Thanks for that buddy.

On Sat, Mar 26, 2016 at 8:38 PM, Brien Dieterle  wrote:

> Put the sudo in front of the add add repo command, or see this
> http://stackoverflow.com/questions/10889072/using-sudo-with-for-loop
> On Mar 25, 2016 8:00 PM, "Michael"  wrote:
>
>> not quite:
>>
>> sudo for rep in ppa:dhor/myway ppa:hugin/hugin-builds
>> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8
>> ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do
>> add-apt-repository $rep ; done
>> bash: syntax error near unexpected token `do'
>>
>>
>> On Fri, Mar 25, 2016 at 9:57 PM, Rusty Carruth 
>> wrote:
>>
>>>
>>>
>>> On 03/25/2016 01:30 PM, Carruth, Rusty wrote:
>>>
>>> for rep in   < whatever3> ; do add-apt-repository
>>> $rep ; done
>>>
>>>
>>>
>>> There.  A command that will take a list of repos.  And if you did that a
>>> lot, make it an alias or a function:
>>>
>>>
>>>
>>> function addrepos() { for rep in $* ; do add-apt-repository $rep ; done
>>> ; }
>>>
>>>
>>>
>>> Put in bashrc or whatever and there you go, a single command.
>>>
>>>
>>>
>>>
>>>
>>> *From:* plug-discuss-boun...@lists.phxlinux.org [
>>> mailto:plug-discuss-boun...@lists.phxlinux.org
>>> ] *On Behalf Of *Michael
>>>
>>>
>>>
>>> bummer. thanks for the news!
>>>
>>>
>>>
>>> On Fri, Mar 25, 2016 at 1:01 PM, Brian Cluff  wrote:
>>>
>>> add-apt-repository only takes a single repository at a time.
>>>
>>> Brian
>>>
>>>
>>>
>>> On 03/25/2016 06:10 AM, Michael wrote:
>>>
>>> does  'add-apt-repository ' work like 'apt-get install
>>> ' where you can just list the repositories after one
>>> ' add-apt-repository?
>>>
>>> 'add-apt-repository'
>>>
>>>
>>>
>>> ---
>>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>>> To subscribe, unsubscribe, or to change your mail settings:
>>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>>
>>
>>
>>
>> --
>> :-)~MIKE~(-:
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: add-apt-repository

2016-03-26 Thread Brien Dieterle
Put the sudo in front of the add add repo command, or see this
http://stackoverflow.com/questions/10889072/using-sudo-with-for-loop
On Mar 25, 2016 8:00 PM, "Michael"  wrote:

> not quite:
>
> sudo for rep in ppa:dhor/myway ppa:hugin/hugin-builds
> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8
> ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do
> add-apt-repository $rep ; done
> bash: syntax error near unexpected token `do'
>
>
> On Fri, Mar 25, 2016 at 9:57 PM, Rusty Carruth 
> wrote:
>
>>
>>
>> On 03/25/2016 01:30 PM, Carruth, Rusty wrote:
>>
>> for rep in   < whatever3> ; do add-apt-repository
>> $rep ; done
>>
>>
>>
>> There.  A command that will take a list of repos.  And if you did that a
>> lot, make it an alias or a function:
>>
>>
>>
>> function addrepos() { for rep in $* ; do add-apt-repository $rep ; done ;
>> }
>>
>>
>>
>> Put in bashrc or whatever and there you go, a single command.
>>
>>
>>
>>
>>
>> *From:* plug-discuss-boun...@lists.phxlinux.org [
>> mailto:plug-discuss-boun...@lists.phxlinux.org
>> ] *On Behalf Of *Michael
>>
>>
>>
>> bummer. thanks for the news!
>>
>>
>>
>> On Fri, Mar 25, 2016 at 1:01 PM, Brian Cluff  wrote:
>>
>> add-apt-repository only takes a single repository at a time.
>>
>> Brian
>>
>>
>>
>> On 03/25/2016 06:10 AM, Michael wrote:
>>
>> does  'add-apt-repository ' work like 'apt-get install
>> ' where you can just list the repositories after one
>> ' add-apt-repository?
>>
>> 'add-apt-repository'
>>
>>
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>
>
>
> --
> :-)~MIKE~(-:
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: darkening around the edges

2016-03-26 Thread Michael
I looked at the wikipedia very informative!

On Wed, Mar 23, 2016 at 4:13 PM, Brian Cluff  wrote:

> Here's some specifics of the blend modes.
> https://en.wikipedia.org/wiki/Blend_modes
>
> http://www.linuxtopia.org/online_books/graphics_tools/gimp_advanced_guide/gimp_guide_node55_002.html
>
> For your example pictures, screen will over brighten the darker areas of
> your picture, so dodge produces a better result.  In a different picture,
> screen could be the better choice.
>
> Brian
>
> On 03/23/2016 12:56 PM, Michael wrote:
>
>> please, what is the difference between the two modes?
>>
>> On Wed, Mar 23, 2016 at 2:35 PM, Brian Cluff > > wrote:
>>
>> Oops, use the Dodge layer mode instead of screen.  You'll get better
>> results.
>>
>> Brian
>>
>>
>> On 03/23/2016 11:22 AM, Brian Cluff wrote:
>>
>>   > On 03/23/2016 04:49 AM, Michael wrote:
>>   > Thanks Brian. I am putty in your hands!
>>
>> I get the bounces from the PLUG mailing list, so I got your
>> images even
>> though they were too big for the queue... nobody else did
>> though, so my
>> answer will be the only one based off your image.
>>
>> Anyway, looking at your pictures, it appears that the darkened
>> edges
>> aren't due to fading over time rather they are caused by what
>> appear to
>> be a flash going off that lit the center of the image more than
>> the
>> edges. This can also be caused of lower quality lenses giving you
>> darkened edges in what is called a vignette.
>>
>> If you want to try and reduce/eliminate it, in gimp you would add
>> a
>> layer above your picture, but before you do that, if you have the
>> option, go to Image -> Precision and set it to 16 ot 32 bit, so
>> that you
>> have more color data to work with.  Unfortunately you'll only
>> have that
>> option if you are running the development version of GIMP, but
>> it will
>> still work OK if you can't do that setting. Next use the
>> gradient tool,
>> changing the gradient type to radial, and make a gradient that
>> goes from
>> black in the center fading to white at the corners. (draw the
>> gradient
>> from the center to one of the corners).
>>
>> Then set your new gradient layer's mode to "screen".
>>
>> At this point the effect will probably be too strong, so you
>> will need
>> to play with the opacity till it looks better and you can also
>> play with
>> the color curves moving the line on the lower left back and
>> forth across
>> the bottom to adjust the shape of the gradient till it better
>> matches
>> the vignette in your image.  You can change the gradients layer
>> mode
>> back to normal to get an idea of what the color curve adjustment
>> is
>> doing to the gradient.
>>
>> Brian Cluff
>>
>> On 03/22/2016 06:42 PM, Brian Cluff wrote:
>>
>> Can you send an example so that I can see what you mean by
>> "darkened
>> around the edges"?
>>
>> I'll see if I can easily correct it and then send
>> instructions on what I
>> did.
>>
>> Brian Cluff
>>
>> On 03/22/2016 04:18 PM, Michael wrote:
>>
>> how does one use a transparent layer? is it only for
>> drawing things on?
>> I have some old pictures that have darkened around the
>> edges. How I
>> think I can fix it is to duplicate the layer then
>> lighten the exposure
>> value on the lower image, then paint black and uncover
>> the lighter image
>> over the section that has darkened. How do I do this
>> with gradients and
>> Darktable?
>>
>> --
>> :-)~MIKE~(-:
>>
>>
>> ---
>> PLUG-discuss mailing list -
>> PLUG-discuss@lists.phxlinux.org
>> 
>> To subscribe, unsubscribe, or to change your mail
>> settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> 
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.phxlinux.org/mailman/listinfo/plug-discuss
>>
>> ---
>> PLUG-discuss mailing list -