 |
 |
 |
 |
| Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum. |

27th March 2010, 09:55 PM
|
|
Registered User
|
|
Join Date: Oct 2009
Age: 27
Posts: 49

|
|
Capture Screen by press some key
hello , I wonder if there is the possibility of getting to press any key and the F6 for example, Fedora starts up a screenshot, equal to application "form screen capture image" in the menu acessories .. The problem is that if I want to do this I have to be opening up the application every time .. and I like to do with was fast, just by clicking F6 or printscreen for example ..
Thanks in advance.
|

27th March 2010, 09:57 PM
|
 |
Administrator
|
|
Join Date: Jun 2006
Location: Paris, TX
Posts: 22,324

|
|
|
Re: Capture Screen by press some key
Press the "Print Screen" key, and wait a few seconds.
|

27th March 2010, 11:22 PM
|
 |
Administrator
|
|
Join Date: Aug 2007
Location: London Postbox (the red one)
Age: 47
Posts: 3,860

|
|
|
Re: Capture Screen by press some key
Or just to capture a app 'alt+print Screen'
Evening Dan
|

27th March 2010, 11:54 PM
|
 |
Administrator
|
|
Join Date: Jun 2006
Location: Paris, TX
Posts: 22,324

|
|
|
Re: Capture Screen by press some key
Evening, Dave. <..  ..>
|

28th March 2010, 12:08 PM
|
|
Registered User
|
|
Join Date: Oct 2009
Age: 27
Posts: 49

|
|
|
Re: Capture Screen by press some key
hi,
if i do that will capture all screen and i want choose with the mouse what capture...
|

28th March 2010, 12:28 PM
|
 |
Administrator (yeah, back again)
|
|
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,333

|
|
|
Re: Capture Screen by press some key
Maybe not a perfect solution, but why not simply crop the shot afterward with gthumb or gimp?
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651
Don't use any of my solutions on working computers or near small children.
|

28th March 2010, 12:30 PM
|
|
Registered User
|
|
Join Date: Jan 2009
Location: Mumbai
Posts: 181

|
|
|
Re: Capture Screen by press some key
Is there any way to take screenshot if one is running a terminal? Any command which can be issued to take screenshot of current screen & save it to a file?
__________________
"Choose Freedom, Choose Open Source"
ShutterTux - Photography, Linux & Life! www.shuttertux.wordpress.com
Running Fedora 16 KDE :)
|

28th March 2010, 12:52 PM
|
 |
Administrator
|
|
Join Date: Aug 2007
Location: London Postbox (the red one)
Age: 47
Posts: 3,860

|
|
|
Re: Capture Screen by press some key
Quote:
Originally Posted by Gaurav Prabhu
Is there any way to take screenshot if one is running a terminal? Any command which can be issued to take screenshot of current screen & save it to a file?
|
do you mean something like
Quote:
|
import -window root screenshot.png
|
|

28th March 2010, 02:34 PM
|
 |
Registered User
|
|
Join Date: Jan 2010
Posts: 897

|
|
|
Re: Capture Screen by press some key
To take screenshots of menus from windows you will need to edit the shortcut's for the keyboard to launch Gimp or imagemagick.
The link below show what command lines you need to use.
http://tips.webdesign10.com/how-to-t...n-ubuntu-linux
This link show how to edit gnome to create global keyboard shortcuts.
http://www.debian-administration.org...tcuts_in_GNOME
---------- Post added at 05:10 AM CDT ---------- Previous post was at 04:32 AM CDT ----------
Using gconf-editor in apps -> metacity -> keybinding_commands the last 2 are the screenshot commands one can add a delay to them by appending "--delay 5"
gnome-screenshot --delay 5
gnome-screeshot --window --delay 5
---------- Post added at 05:34 AM CDT ---------- Previous post was at 05:10 AM CDT ----------
Quote:
hi,
if i do that will capture all screen and i want choose with the mouse what capture...
|
To do that you could use the "-a" flag.
Last edited by BugRocks1; 28th March 2010 at 01:52 PM.
|

28th March 2010, 05:32 PM
|
|
Registered User
|
|
Join Date: Jan 2009
Location: Mumbai
Posts: 181

|
|
Re: Capture Screen by press some key
Quote:
Originally Posted by Dangermouse
do you mean something like
|
Yes, something like that but where does the file gets saved? Also would love more info about the same.
__________________
"Choose Freedom, Choose Open Source"
ShutterTux - Photography, Linux & Life! www.shuttertux.wordpress.com
Running Fedora 16 KDE :)
|

29th March 2010, 01:53 AM
|
 |
Registered User
|
|
Join Date: Jan 2010
Posts: 897

|
|
|
Re: Capture Screen by press some key
Quote:
Originally Posted by Gaurav Prabhu
Yes, something like that but where does the file gets saved? Also would love more info about the same. 
|
Type:
And you will see as there was no path indicate the default path is "almost always" the actual path.
For more info aboutthe "import" command type:
man import.
|

29th March 2010, 09:44 PM
|
 |
Administrator
|
|
Join Date: Aug 2007
Location: London Postbox (the red one)
Age: 47
Posts: 3,860

|
|
|
Re: Capture Screen by press some key
Quote:
Originally Posted by Gaurav Prabhu
Yes, something like that but where does the file gets saved? Also would love more info about the same. 
|
The file gets saved where you want it, or where the terminal is
eg
Quote:
|
import -window root /home/Dangermouse/Pictures/screenshot.png
|
or if you want a delay (5 = 5seconds)
Quote:
|
sleep 5; import -window root /home/Dangermouse/Pictures/screenshot.png
|
or if you want to set width of shot
Quote:
|
import -window root -resize 500 screenshot.png
|
or taking it a bit further if you want to take a screenshot every so many seconds etc...
then this little script will do it, thats if you want to spy etc...
Quote:
#!/usr/bin/bash
I=0
while [ 1 ]; do
FILENAME=/home/Dangermouse/.shots/${BASENAME}${I}.png
echo "Saving ${FILENAME}"
import -window root -silent ${FILENAME}
I=$[ $I + 1 ]
sleep 5
done
|
obviously you will need to change settings eg time and folder to suit you...
|

31st March 2010, 07:45 AM
|
|
Registered User
|
|
Join Date: Jan 2009
Location: Mumbai
Posts: 181

|
|
|
Re: Capture Screen by press some key
Thanks. I wanted to know about this since a long time.
__________________
"Choose Freedom, Choose Open Source"
ShutterTux - Photography, Linux & Life! www.shuttertux.wordpress.com
Running Fedora 16 KDE :)
|

6th April 2010, 11:41 PM
|
|
Registered User
|
|
Join Date: Oct 2009
Age: 27
Posts: 49

|
|
|
Re: Capture Screen by press some key
Quote:
Originally Posted by BugRocks1
To take screenshots of menus from windows you will need to edit the shortcut's for the keyboard to launch Gimp or imagemagick.
The link below show what command lines you need to use.
http://tips.webdesign10.com/how-to-t...n-ubuntu-linux
This link show how to edit gnome to create global keyboard shortcuts.
http://www.debian-administration.org...tcuts_in_GNOME
---------- Post added at 05:10 AM CDT ---------- Previous post was at 04:32 AM CDT ----------
Using gconf-editor in apps -> metacity -> keybinding_commands the last 2 are the screenshot commands one can add a delay to them by appending "--delay 5"
gnome-screenshot --delay 5
gnome-screeshot --window --delay 5
---------- Post added at 05:34 AM CDT ---------- Previous post was at 05:10 AM CDT ----------
To do that you could use the "-a" flag.
|
Thx dude, solve my problem.
|

28th May 2010, 11:46 PM
|
|
Registered User
|
|
Join Date: Jun 2006
Location: UK
Posts: 14

|
|
|
Re: Capture Screen by press some key
I can't help but think that taking a screenshot of a terminal is missing the point of a text interface. Why not just copy / pipe the contents of the terminal to a text file?
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Current GMT-time: 22:17 (Wednesday, 19-06-2013)
|
|
 |
 |
 |
 |
|
|