Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Forum Archive > Main Support Categories > Desktop Environments
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.

Desktop Environments
Support for your Ubuntu desktop. Including Gnome, KDE and XFCE.

 
Thread Tools Display Modes
Old August 19th, 2006   #1
Steve S.
Ubuntu Extra Shot
 
Steve S.'s Avatar
 
Join Date: Jan 2006
Location: Texas
Beans: 340
Ubuntu 6.10 Edgy
Screenshot of 3d desktop & Login

I'm sorry to do this, 'cause I know it's posted, I just can't figure out the search parameters.

So, if you would please tell me how to get screenshots of things like 3ddesktop and the boot-up screen in action? I'm sure there is some type of keyboard short cut or something but I just can't find it in the forums.

I can take screenshots of the current desktop once it's running, just don't know how to take those other shots to be able to show Windows friends of mine the 3d stuff and etc.
Steve S. is offline   Reply With Quote
Old August 19th, 2006   #2
meng
Guest
 
Join Date: Jan 2006
Beans: 4,208
Ubuntu 7.04 Feisty Fawn
Re: Screenshot of 3d desktop & Login

There is a keyboard shortcut in GNOME (default I think is PrntScrn), but I'm not sure if it would work with the 3ddesktop transitions.
I suggest the easier way to achieve this one-off task would be to google for screenshots already posted by others. e.g.
http://linuxreviews.org/features/3ddesktop/

I know this doesn't really answer the question, just another suggestion that's all.
meng is offline   Reply With Quote
Old August 19th, 2006   #3
kerry_s
WTF?
 
Join Date: Jul 2006
Location: Lost!
Beans: 7,070
Re: Screenshot of 3d desktop & Login

Use gimp>file> acquire>screenshot, then just set the delay to how much time you need to get into 3ddesk. For the login i haven't got a clue, unless you run a system in qemu. I use a launcher for 3ddesk,see pic

Last edited by kerry_s; October 29th, 2006 at 03:40 AM..
kerry_s is offline   Reply With Quote
Old August 20th, 2006   #4
Steve S.
Ubuntu Extra Shot
 
Steve S.'s Avatar
 
Join Date: Jan 2006
Location: Texas
Beans: 340
Ubuntu 6.10 Edgy
Re: Screenshot of 3d desktop & Login

Quote:
Originally Posted by kerry_s View Post
Use gimp>file> acquire>screenshot, then just set the delay to how much time you need to get into 3ddesk. For the login i haven't got a clue, unless you run a system in qemu. I use a launcher for 3ddesk,see pic
Wow...great idea! Never thought of that, kerry_s...I'll give it a shot!

Thanks for the input, all!
Steve S. is offline   Reply With Quote
Old August 20th, 2006   #5
ardchoille
Has an Ubuntu Drip
 
Join Date: Nov 2005
Beans: 729
Ubuntu 6.06
Re: Screenshot of 3d desktop & Login

To get a screenshot of the login screen:

1. You'll need a command to take a screenshot of the GDM screen. I recommend making a bash script with the following content:

Code:
#!/bin/bash
chvt 7 ; sleep 5 ; XAUTHORITY=/var/lib/gdm/:0.Xauth DISPLAY=:0.0 import -window root /tmp/screenshot.png
Create a new file, enter the above contents into it, save it as gdmshot.sh and make it executable with: chmod a+x gdmshot.sh. Move gdmshot.sh to a place where you don't mind leaving it permanently.

2. Logout of your current session.

3. When the gdm screen appears, press the following keys:

CTRL+ALT+F2

to go to console 2.

4. Login as yourself.

5. Type in the following:

Code:
sudo sh /path/to/gdmshot.sh
6. Wait 5 seconds and your screenshot will be stored at /tmp/screenshot.png

I use this method to get screenshots for the GDM themes I create. Here's the script I use for GDM screenshots:

Code:
#!/bin/bash

# take a gdm screenshot
chvt 7 ; sleep 5 ; XAUTHORITY=/var/lib/gdm/:0.Xauth DISPLAY=:0.0 import -window root /tmp/screenshot.png

# change owner and group ownserships of the screenshot
chown username:username /tmp/screenshot.png

# move the screenshot to a more suitable palce
mv /tmp/screenshot.png /home/username/screenshot.png
Remember to replace the "username" above with your user name.

Last edited by ardchoille; August 20th, 2006 at 07:20 PM..
ardchoille is offline   Reply With Quote
Old August 21st, 2006   #6
Steve S.
Ubuntu Extra Shot
 
Steve S.'s Avatar
 
Join Date: Jan 2006
Location: Texas
Beans: 340
Ubuntu 6.10 Edgy
Re: Screenshot of 3d desktop & Login

Quote:
Originally Posted by ardchoille View Post
To get a screenshot of the login screen:

1. You'll need a command to take a screenshot of the GDM screen. I recommend making a bash script with the following content:

Code:
#!/bin/bash
chvt 7 ; sleep 5 ; XAUTHORITY=/var/lib/gdm/:0.Xauth DISPLAY=:0.0 import -window root /tmp/screenshot.png
Create a new file, enter the above contents into it, save it as gdmshot.sh and make it executable with: chmod a+x gdmshot.sh. Move gdmshot.sh to a place where you don't mind leaving it permanently.

2. Logout of your current session.

3. When the gdm screen appears, press the following keys:

CTRL+ALT+F2

to go to console 2.

4. Login as yourself.

5. Type in the following:

Code:
sudo sh /path/to/gdmshot.sh
6. Wait 5 seconds and your screenshot will be stored at /tmp/screenshot.png

I use this method to get screenshots for the GDM themes I create. Here's the script I use for GDM screenshots:

Code:
#!/bin/bash

# take a gdm screenshot
chvt 7 ; sleep 5 ; XAUTHORITY=/var/lib/gdm/:0.Xauth DISPLAY=:0.0 import -window root /tmp/screenshot.png

# change owner and group ownserships of the screenshot
chown username:username /tmp/screenshot.png

# move the screenshot to a more suitable palce
mv /tmp/screenshot.png /home/username/screenshot.png
Remember to replace the "username" above with your user name.
Ahhh...the epitome of open source: I get to learn something new!

Thanks ardchoille, I'll give it a shot!
Steve S. is offline   Reply With Quote
Old August 28th, 2006   #7
Steve S.
Ubuntu Extra Shot
 
Steve S.'s Avatar
 
Join Date: Jan 2006
Location: Texas
Beans: 340
Ubuntu 6.10 Edgy
Re: Screenshot of 3d desktop & Login

Ok, ardchoille, I did what you suggested and your script worked great.

I now have a great shot of my login (see attachment). I wanted to be able to do this, but I also wanted to be able to get a shot of my usplash screen (see attachment, Kubuntu).

Can you (or anyone) tell me how to do this?
Attached Thumbnails
Click image for larger version

Name:	screenshot.png
Views:	48
Size:	91.3 KB
ID:	15005   Click image for larger version

Name:	usplash_kubuntu.png
Views:	49
Size:	20.2 KB
ID:	15006  
Steve S. is offline   Reply With Quote
Old August 28th, 2006   #8
mssever
I Ubuntu, Therefore, I Am
 
mssever's Avatar
 
Join Date: Jun 2006
Location: 대전, Korea
Beans: 3,443
Ubuntu 8.10 Intrepid Ibex
Send a message via AIM to mssever Send a message via Yahoo to mssever Send a message via Skype™ to mssever
Re: Screenshot of 3d desktop & Login

Quote:
Originally Posted by kerry_s View Post
Use gimp>file> acquire>screenshot, then just set the delay to how much time you need to get into 3ddesk. For the login i haven't got a clue, unless you run a system in qemu. I use a launcher for 3ddesk,see pic
kerry_s: Where did you get the launcher icon? I want it!
__________________
What's a blub programmer?         Registered Linux user #419974
My projects:
Net Responsibility -- Internet accountability software for Linux
BadgeEntry -- Track attendance for children's events
mssever is offline   Reply With Quote
Old August 28th, 2006   #9
Steve S.
Ubuntu Extra Shot
 
Steve S.'s Avatar
 
Join Date: Jan 2006
Location: Texas
Beans: 340
Ubuntu 6.10 Edgy
Re: Screenshot of 3d desktop & Login

Quote:
Originally Posted by mssever View Post
kerry_s: Where did you get the launcher icon? I want it!
Actually, kerry_s, I'd like to know that too, although that doesn't help me with my usplash shot. I did get 3ddesk settup and now have a hot-key set for it...pretty cool stuff, but very cool icon.
Steve S. is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:39 AM.


vBulletin ©2000 - 2009, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry