Opening windows in seperate screens
Message-ID:<slrngpgaj4.mo4.houghi@pasta.houghi>
Subject:
Opening windows in seperate screens
Date:Sun, 15 Feb 2009 15:44:52 +0100
I have several screens and I can open GIMP in screen :0.0 and then move
the toolbox to screen :0.1.
What I would like to achieve is to open the toolbox in :0.0, one image in
screen :0.0 and a second one in :0.1
At this moment I just use `gimp file1.jpg file2.jpg
I have looked at gimp --display 0:0, but that works only for all. The
chalange is not to have 1 image on 1 screen and the toolbox on the
other screen. That is pretty easy. Just open the image in the screen you
want, move the toolbox to the other screen and each time it will open
there.
The chalange is opening two images in different screens. The reason is
that one is the original and the other is the newer version of a
wallpaper.(1)
houghi@pasta : gimp -v
GNU Image Manipulation Program version 2.6.
(1) For those who are interested, this is the script I use. I copy from
the first, paste in the second. The second is 1920x1200 while the first
will be larger, e.g. 1920x3600 or 4300x5000. I move the image around to
get what I want.Then I close gimp with CTRL+q and the next image can be
edited.
#!/bin/bash
test -d made || mkdir made
for FILE in *.jpg
do
COLOUR=`convert $FILE -filter Box -resize 1x1 -depth 8 txt:-| \
head -n 2| tail -n 1|awk '{print $NF}'`
#Colour
COLOUR_BAK="rgb(255,255,255)"
convert -size 1920x1200 xc:${COLOUR_BAK} -colorspace CMYK made/$FILE
gimp -d -f made/$FILE $FILE
NAME=`jhead $FILE|grep ^Comment|awk -F": " '{print $NF}'`
jhead -cl "$NAME" made/$FILE
done
gqview made/
houghi
--
This was written under the influence of the following:
| Artist : Pink Floyd
| Song : Us And Them
| Album : Dark Side of the Moon
Message-ID:<gna0lt$c36$1@reader.motzarella.org>
Subject:
Re: Opening windows in seperate screens
Date:Sun, 15 Feb 2009 22:15:39 +0100
houghi wrote: > I have several screens and I can open GIMP in screen :0.0 and then move > the toolbox to screen :0.1. > > What I would like to achieve is to open the toolbox in :0.0, one image in > screen :0.0 and a second one in :0.1 > Ken je het eenvoudige setenv DISPLAY 127.0.0.1:0.0 #voor sh export DISPLAY dat je tussen het openen in gimp kunt zetten?? Dus je doet geen gimp im1 im2 maar gimp im1 setenv DISPLAY 127.0.0.1:XXX export DISPLAY gimp im2 Die setenv/export laat toe om ook op een netwerked comp elders een app te starten, na host+ zie env voor de huidige waarde -- -- 700+ Radio Stations on SW http://swstations.tk/ Shortwave transmissions in English, Francais, Nederlands, Deutsch, Suid-Afrikaans, Chinese, Dansk, Urdu, Cantonese, Greek, Spanish, Portuguese, ... http://radiolanguages.tk Updated every month or so ....
Message-ID:<slrngph85u.ona.houghi@pasta.houghi>
Subject:
Re: Opening windows in seperate screens
Date:Mon, 16 Feb 2009 00:09:50 +0100
user wrote: >> I have several screens and I can open GIMP in screen :0.0 and then move >> the toolbox to screen :0.1. >> >> What I would like to achieve is to open the toolbox in :0.0, one image in >> screen :0.0 and a second one in :0.1 >> > > > Ken je het eenvoudige This is an english group. Please reply in English so others can learn as well. Thanks. > setenv DISPLAY 127.0.0.1:0.0 #voor sh > export DISPLAY > dat je tussen het openen in gimp kunt zetten?? setenv does not exist on my machine. houghi -- > Beware of he who would deny you access to information, < > for in his heart he dreams himself your master. < > Commissioner Pravin Lal: "U.N. Declaration of Rights" <
Message-ID:<20091$4998a2b1$414ebc3d$25040@EVERESTKC.NET>
Subject:
Re: Opening windows in seperate screens
Date:Mon, 16 Feb 2009 00:18:08 +0100
On 02/15/09 15:09, houghi wrote: > user wrote: >>> I have several screens and I can open GIMP in screen :0.0 and then move >>> the toolbox to screen :0.1. >>> >>> What I would like to achieve is to open the toolbox in :0.0, one image in >>> screen :0.0 and a second one in :0.1 >>> >> >> >> Ken je het eenvoudige > > This is an english group. Please reply in English so others can learn as > well. Thanks. Help is help. If you don't want the help, ignore it. > >> setenv DISPLAY 127.0.0.1:0.0 #voor sh >> export DISPLAY >> dat je tussen het openen in gimp kunt zetten?? > > setenv does not exist on my machine. > > > houghi You don't understand what he was trying to say? You are posting from a Linux host. Is that were you're running The Gimp? ... and you don't know what the DISPLAY environment variable is for? Honest to goodness: You can look at the following line: setenv DISPLAY 127.0.0.1:0.0 and not have any idea what he is trying to tell you?
Message-ID:<slrngpibo1.rr2.houghi@pasta.houghi>
Subject:
Re: Opening windows in seperate screens
Date:Mon, 16 Feb 2009 10:16:49 +0100
Mark Hansen wrote: >> This is an english group. Please reply in English so others can learn as >> well. Thanks. > > Help is help. If you don't want the help, ignore it. It is not for me that I say this. I say it because of others. That way others will learn and can participate as well. If I would want to have this dicusiion in Dutch, I would move to a specific group for that language. Don't you think it is nice if other people can learn as well as me getting the solution? To me open source is not only about the sharing the source. It is _to me_ also about sharing the knowledge. To do so I believe using the same language helps enourmously. > You don't understand what he was trying to say? Yes, I did. The command he gave me just did not work. > You are posting from a Linux host. Is that were you're running The Gimp? > ... and you don't know what the DISPLAY environment variable is for? Not completely, no. At least I never used it in that way before. > Honest to goodness: You can look at the following line: > > setenv DISPLAY 127.0.0.1:0.0 > > and not have any idea what he is trying to tell you? I understood what he was trying to say, so what I did was copy and paste what he had done and then I got the information that the command `setenv` did not exist. As you see in a later post by me, I found a way to do what he said, but a bit different. Unfortunatly that does not do what I would like it to do. houghi -- > Beware of he who would deny you access to information, < > for in his heart he dreams himself your master. < > Commissioner Pravin Lal: "U.N. Declaration of Rights" <
Message-ID:<slrngph9gf.u6m.houghi@pasta.houghi>
Subject:
Re: Opening windows in seperate screens
Date:Mon, 16 Feb 2009 00:32:31 +0100
houghi wrote: >> setenv DISPLAY 127.0.0.1:0.0 #voor sh >> export DISPLAY >> dat je tussen het openen in gimp kunt zetten?? > > setenv does not exist on my machine. The equvilent is export DISPLAY=":0.1" However this does not work in a script. At least not what I need. I need two images open. They need to have the same toolbox. Now if I do the following in a script: #!/bin/bash export DISPLAY=":0.0" gimp img1 export DISPLAY=":0.1" gimp img2 The second only starts when the first closes, so that is not good. I then added a & as so: #!/bin/bash export DISPLAY=":0.0" gimp img1 & export DISPLAY=":0.1" gimp img2 Now they both open in the right screen, but with each their own toolbox. houghi -- > Beware of he who would deny you access to information, < > for in his heart he dreams himself your master. < > Commissioner Pravin Lal: "U.N. Declaration of Rights" <
Message-ID:<slrngpvvlg.fb4.houghi@pasta.houghi>
Subject:
Re: Opening windows in seperate screens
Date:Sat, 21 Feb 2009 14:16:32 +0100
houghi wrote:
>
>
> I have several screens and I can open GIMP in screen :0.0 and then move
> the toolbox to screen :0.1.
I have filed it as bug: http://bugzilla.gnome.org/show_bug.cgi?id=572616
houghi
--
We all came out to Montreux Frank Zappa and the Mothers
On the Lake Geneva shoreline Were at the best place around
To make records with a mobile But some stupid with a flare gun
We didn't have much time Burned the place to the ground
Message-ID:<slrngpgaj4.mo4.houghi@pasta.houghi>
Subject:
Opening windows in seperate screens
Date:Sun, 15 Feb 2009 15:44:52 +0100
I have several screens and I can open GIMP in screen :0.0 and then move
the toolbox to screen :0.1.
What I would like to achieve is to open the toolbox in :0.0, one image in
screen :0.0 and a second one in :0.1
At this moment I just use `gimp file1.jpg file2.jpg
I have looked at gimp --display 0:0, but that works only for all. The
chalange is not to have 1 image on 1 screen and the toolbox on the
other screen. That is pretty easy. Just open the image in the screen you
want, move the toolbox to the other screen and each time it will open
there.
The chalange is opening two images in different screens. The reason is
that one is the original and the other is the newer version of a
wallpaper.(1)
houghi@pasta : gimp -v
GNU Image Manipulation Program version 2.6.
(1) For those who are interested, this is the script I use. I copy from
the first, paste in the second. The second is 1920x1200 while the first
will be larger, e.g. 1920x3600 or 4300x5000. I move the image around to
get what I want.Then I close gimp with CTRL+q and the next image can be
edited.
#!/bin/bash
test -d made || mkdir made
for FILE in *.jpg
do
COLOUR=`convert $FILE -filter Box -resize 1x1 -depth 8 txt:-| \
head -n 2| tail -n 1|awk '{print $NF}'`
#Colour
COLOUR_BAK="rgb(255,255,255)"
convert -size 1920x1200 xc:${COLOUR_BAK} -colorspace CMYK made/$FILE
gimp -d -f made/$FILE $FILE
NAME=`jhead $FILE|grep ^Comment|awk -F": " '{print $NF}'`
jhead -cl "$NAME" made/$FILE
done
gqview made/
houghi
--
This was written under the influence of the following:
| Artist : Pink Floyd
| Song : Us And Them
| Album : Dark Side of the Moon
Message-ID:<gna0lt$c36$1@reader.motzarella.org>
Subject:
Re: Opening windows in seperate screens
Date:Sun, 15 Feb 2009 22:15:39 +0100
houghi wrote: > I have several screens and I can open GIMP in screen :0.0 and then move > the toolbox to screen :0.1. > > What I would like to achieve is to open the toolbox in :0.0, one image in > screen :0.0 and a second one in :0.1 > Ken je het eenvoudige setenv DISPLAY 127.0.0.1:0.0 #voor sh export DISPLAY dat je tussen het openen in gimp kunt zetten?? Dus je doet geen gimp im1 im2 maar gimp im1 setenv DISPLAY 127.0.0.1:XXX export DISPLAY gimp im2 Die setenv/export laat toe om ook op een netwerked comp elders een app te starten, na host+ zie env voor de huidige waarde -- -- 700+ Radio Stations on SW http://swstations.tk/ Shortwave transmissions in English, Francais, Nederlands, Deutsch, Suid-Afrikaans, Chinese, Dansk, Urdu, Cantonese, Greek, Spanish, Portuguese, ... http://radiolanguages.tk Updated every month or so ....
Message-ID:<slrngph85u.ona.houghi@pasta.houghi>
Subject:
Re: Opening windows in seperate screens
Date:Mon, 16 Feb 2009 00:09:50 +0100
user wrote: >> I have several screens and I can open GIMP in screen :0.0 and then move >> the toolbox to screen :0.1. >> >> What I would like to achieve is to open the toolbox in :0.0, one image in >> screen :0.0 and a second one in :0.1 >> > > > Ken je het eenvoudige This is an english group. Please reply in English so others can learn as well. Thanks. > setenv DISPLAY 127.0.0.1:0.0 #voor sh > export DISPLAY > dat je tussen het openen in gimp kunt zetten?? setenv does not exist on my machine. houghi -- > Beware of he who would deny you access to information, < > for in his heart he dreams himself your master. < > Commissioner Pravin Lal: "U.N. Declaration of Rights" <
Message-ID:<20091$4998a2b1$414ebc3d$25040@EVERESTKC.NET>
Subject:
Re: Opening windows in seperate screens
Date:Mon, 16 Feb 2009 00:18:08 +0100
On 02/15/09 15:09, houghi wrote: > user wrote: >>> I have several screens and I can open GIMP in screen :0.0 and then move >>> the toolbox to screen :0.1. >>> >>> What I would like to achieve is to open the toolbox in :0.0, one image in >>> screen :0.0 and a second one in :0.1 >>> >> >> >> Ken je het eenvoudige > > This is an english group. Please reply in English so others can learn as > well. Thanks. Help is help. If you don't want the help, ignore it. > >> setenv DISPLAY 127.0.0.1:0.0 #voor sh >> export DISPLAY >> dat je tussen het openen in gimp kunt zetten?? > > setenv does not exist on my machine. > > > houghi You don't understand what he was trying to say? You are posting from a Linux host. Is that were you're running The Gimp? ... and you don't know what the DISPLAY environment variable is for? Honest to goodness: You can look at the following line: setenv DISPLAY 127.0.0.1:0.0 and not have any idea what he is trying to tell you?
Message-ID:<slrngpibo1.rr2.houghi@pasta.houghi>
Subject:
Re: Opening windows in seperate screens
Date:Mon, 16 Feb 2009 10:16:49 +0100
Mark Hansen wrote: >> This is an english group. Please reply in English so others can learn as >> well. Thanks. > > Help is help. If you don't want the help, ignore it. It is not for me that I say this. I say it because of others. That way others will learn and can participate as well. If I would want to have this dicusiion in Dutch, I would move to a specific group for that language. Don't you think it is nice if other people can learn as well as me getting the solution? To me open source is not only about the sharing the source. It is _to me_ also about sharing the knowledge. To do so I believe using the same language helps enourmously. > You don't understand what he was trying to say? Yes, I did. The command he gave me just did not work. > You are posting from a Linux host. Is that were you're running The Gimp? > ... and you don't know what the DISPLAY environment variable is for? Not completely, no. At least I never used it in that way before. > Honest to goodness: You can look at the following line: > > setenv DISPLAY 127.0.0.1:0.0 > > and not have any idea what he is trying to tell you? I understood what he was trying to say, so what I did was copy and paste what he had done and then I got the information that the command `setenv` did not exist. As you see in a later post by me, I found a way to do what he said, but a bit different. Unfortunatly that does not do what I would like it to do. houghi -- > Beware of he who would deny you access to information, < > for in his heart he dreams himself your master. < > Commissioner Pravin Lal: "U.N. Declaration of Rights" <
Message-ID:<slrngph9gf.u6m.houghi@pasta.houghi>
Subject:
Re: Opening windows in seperate screens
Date:Mon, 16 Feb 2009 00:32:31 +0100
houghi wrote: >> setenv DISPLAY 127.0.0.1:0.0 #voor sh >> export DISPLAY >> dat je tussen het openen in gimp kunt zetten?? > > setenv does not exist on my machine. The equvilent is export DISPLAY=":0.1" However this does not work in a script. At least not what I need. I need two images open. They need to have the same toolbox. Now if I do the following in a script: #!/bin/bash export DISPLAY=":0.0" gimp img1 export DISPLAY=":0.1" gimp img2 The second only starts when the first closes, so that is not good. I then added a & as so: #!/bin/bash export DISPLAY=":0.0" gimp img1 & export DISPLAY=":0.1" gimp img2 Now they both open in the right screen, but with each their own toolbox. houghi -- > Beware of he who would deny you access to information, < > for in his heart he dreams himself your master. < > Commissioner Pravin Lal: "U.N. Declaration of Rights" <
Message-ID:<slrngpvvlg.fb4.houghi@pasta.houghi>
Subject:
Re: Opening windows in seperate screens
Date:Sat, 21 Feb 2009 14:16:32 +0100
houghi wrote:
>
>
> I have several screens and I can open GIMP in screen :0.0 and then move
> the toolbox to screen :0.1.
I have filed it as bug: http://bugzilla.gnome.org/show_bug.cgi?id=572616
houghi
--
We all came out to Montreux Frank Zappa and the Mothers
On the Lake Geneva shoreline Were at the best place around
To make records with a mobile But some stupid with a flare gun
We didn't have much time Burned the place to the ground



RSS News Feed