Page 1 of 3 123 LastLast
Results 1 to 10 of 30

Thread: HOWTO: Run GIMP in its own window.

  1. #1
    Join Date
    Dec 2005
    Location
    Nowhere!
    Beans
    180
    Distro
    Ubuntu 7.10 Gutsy Gibbon

    HOWTO: Run GIMP in its own window.

    First make sure you have all the needed stuff:
    Code:
    sudo apt-get install xnest metacity gimp
    Now run this command to test it:
    Code:
    Xnest :1 -ac -name GIMP -geometry 1024x690 & metacity --display :1 & gimp --display :1
    You may like to change the "1024x690" to something that better fits your screen.

    If it works, you may edit your GIMP menu shortcuts to reflect that command.

    Here's a screenshot:
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	gimp.png 
Views:	1957 
Size:	185.7 KB 
ID:	14631  

  2. #2
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO: Run GIMP in its own window.

    Could I get an example of this edit command you speak of? I like this.

  3. #3
    Join Date
    Sep 2006
    Location
    Brisbane, Australia
    Beans
    48
    Distro
    Ubuntu 6.10 Edgy

    Re: HOWTO: Run GIMP in its own window.

    That's a really good idea. Thanks.

  4. #4
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO: Run GIMP in its own window.

    Hmmm, like perhaps I ought to create a launcher on my desktop, and use that command? I'd like it if I could make it so it would do that if I right click an image and choose open with gimp, but hey, no problem with it otherwise!

    Again, I really like this, thanks for posting it.

  5. #5
    Join Date
    Oct 2005
    Location
    London
    Beans
    305

    Re: HOWTO: Run GIMP in its own window.

    I'd like it if I could make it so it would do that if I right click an image and choose open with gimp, but hey, no problem with it otherwise!
    Rename /usr/bin/gimp to /usr/bin/gimp_bin, then make a new file:
    Code:
    #!/bin/bash
    Xnest :1 -ac -name GIMP -geometry 1024x690 & metacity --display :1 & gimp_bin --display :1
    save this file as /usr/bin/gimp

  6. #6
    Join Date
    Mar 2006
    Location
    Scotland
    Beans
    281
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO: Run GIMP in its own window.

    Quote Originally Posted by simplyw00x View Post
    save this file as /usr/bin/gimp
    youl also have to run
    Code:
    sudo chmod +x /usr/bin/gimp
    And you'll have to be an admin of course.

  7. #7
    Join Date
    Jun 2006
    Location
    /Earth/Asia/Vietnam
    Beans
    211
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: HOWTO: Run GIMP in its own window.

    We could try also GIMPshop, which is a improved version of GIMP: http://www.gimpshop.net/ --> it also open GIMP as a whole window, which makes us feel smth Photoshop-alike.
    .:.:.[)[@[)|2.:.:.
    "Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side-effect." -- Linus Torvald.

  8. #8
    Join Date
    Nov 2005
    Beans
    679

    Re: HOWTO: Run GIMP in its own window.

    wow, that plus gimpshop is really excellent@!!!!

  9. #9
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO: Run GIMP in its own window.

    Quote Originally Posted by simplyw00x View Post
    Rename /usr/bin/gimp to /usr/bin/gimp_bin, then make a new file:
    Code:
    #!/bin/bash
    Xnest :1 -ac -name GIMP -geometry 1024x690 & metacity --display :1 & gimp_bin --display :1
    save this file as /usr/bin/gimp
    Isn't there some chown command or something I have to run first to have permission to alter the file? (if not for that, then for any others, and what is the command, I really need it for something else, also thanks)

  10. #10
    Join Date
    Oct 2005
    Location
    Rome, Ga
    Beans
    2,339
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO: Run GIMP in its own window.

    Okay, I did it, but now it opens the window, but not gimp.

Page 1 of 3 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •