WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: How do you take a screen-shot / print-screen / screen-capture in TC?  (Read 4738 times)

Offline baz

  • Full Member
  • ***
  • Posts: 216
How do you take a screen-shot / print-screen / screen-capture in TC?

Offline roberts

  • Administrator
  • Hero Member
  • *****
  • Posts: 7361
  • Founder Emeritus
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #1 on: December 31, 2009, 12:34:37 PM »
It is on the main system (right click) menu, Screenshot
10+ Years Contributing to Linux Open Source Projects.

Offline baz

  • Full Member
  • ***
  • Posts: 216
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #2 on: December 31, 2009, 04:07:08 PM »
Easy enough, thank you!

Offline jpeters

  • Restricted
  • Hero Member
  • *****
  • Posts: 1017
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #3 on: December 31, 2009, 06:05:28 PM »
....maybe better to hotkey it, so you don't have the menu in the screenshot.

Code: [Select]
#!/bin/sh
sleep 1 && imlib2_grab screenshot_`date "+%m.%d_%H:%M:%S"`.png

Offline baz

  • Full Member
  • ***
  • Posts: 216
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #4 on: January 01, 2010, 03:02:14 PM »
jpeters, the menu doesn't actually appear in the screenshot - they are smart developers! But I still would like to map the hotkey to 'printscrn', where do I put that command and does it map to printscrn?

Cheers,
Baz

Offline roberts

  • Administrator
  • Hero Member
  • *****
  • Posts: 7361
  • Founder Emeritus
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #5 on: January 01, 2010, 04:12:16 PM »
jpeters uses jwm. There is a config file for hotkeys when using jwm.
10+ Years Contributing to Linux Open Source Projects.

Offline ^thehatsrule^

  • Administrator
  • Hero Member
  • *****
  • Posts: 1726
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #6 on: January 02, 2010, 02:00:41 PM »
baz: there may be a way to do that via a utility like xmodmap

Offline baz

  • Full Member
  • ***
  • Posts: 216
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #7 on: January 12, 2010, 12:52:29 AM »
Online it says to use the xev command to find out the keycode for print screen to xmodmap it, however I don't think we have xev in TC? Any idea how to go about getting the keycode - and is this the best way to map my fn+PrtSc key on my EEE in LXDE?

Thanks.

Offline jur

  • Hero Member
  • *****
  • Posts: 863
    • cycling photo essays
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #8 on: January 12, 2010, 01:00:23 AM »
xev is part of Xorg. You can temporarily mount it to use xev, not even necessary to restart X.

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10962
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #9 on: January 13, 2010, 10:32:43 AM »
xmodmap can't have actions bound to keys; you need a hotkey daemon for that. Actkbd is a standalone one, some window managers have their own (jwm, fluxbox, xfce for example).
The only barriers that can stop you are the ones you create yourself.

Offline baz

  • Full Member
  • ***
  • Posts: 216
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #10 on: January 13, 2010, 10:47:16 AM »
LXDE? How do I get at it.

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10962
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #11 on: January 13, 2010, 11:02:47 AM »
LXDE uses openbox, so either the obconf app or:
http://openbox.org/wiki/Help:Bindings
The only barriers that can stop you are the ones you create yourself.

Offline baz

  • Full Member
  • ***
  • Posts: 216
Re: How do you take a screen-shot / print-screen / screen-capture in TC?
« Reply #12 on: January 13, 2010, 11:25:17 AM »
You're the best, thank you!