Page 1 of 2
Screenshot Utilities
Posted: Thu Aug 13, 2020 8:56 am
by darry19662018
Re: Screenshot Utilities
Posted: Thu Aug 13, 2020 10:40 am
by greengeek
Great idea for a central index for these utils.
But don't forget to add T.A.S - been my favourite for a long time.
Re: Screenshot Utilities
Posted: Thu Aug 13, 2020 11:08 am
by darry19662018
Thanks GG,
Forgot about that one.
Re: Screenshot Utilities -mtpaint snapshot
Posted: Thu Aug 13, 2020 9:57 pm
by mikeslr
IIRC, 01micko developed the script for using mtpaint's snapshot capability. I think I packaged it as a pet with a desktop file so that I could use it in a taskbar launcher.
The GUI provides four choices for delaying taking a snapshot of your desktop: Now, 2 sec., 5 secs, 10 secs. A snapshot of your entire desktop is taken and opened in mtpaint where you can use all of its capabilities. If you want to preserve only a portion of the screenshot, you 'lasso' the part you want.
Re: Screenshot Utilities
Posted: Fri Aug 14, 2020 3:44 am
by smokey01
Jamesbond's Xscreenshot is very good also. It comes with Fatdog64.
https://www.lightofdawn.org/wiki/wiki.cgi/Xscreenshot
Re: Screenshot Utilities
Posted: Fri Aug 14, 2020 5:43 am
by step
Fredx181's Take-a-GIF (tkagif / TKAGIF), a fork of TAS.
Re: Screenshot Utilities
Posted: Fri Aug 14, 2020 9:41 am
by fredx181
step wrote: ↑Fri Aug 14, 2020 5:43 am
Fredx181's Take-a-GIF (tkagif / TKAGIF), a fork of TAS.
See here:
http://oldforum.puppylinux.com/puppy/vi ... p?t=118623
Fred
Re: Screenshot Utilities
Posted: Fri Aug 14, 2020 3:16 pm
by Dingo
Snapall was a gtk2 program I compiled many many time ago, it will be worth to investigate how statically compile for puppy without gtk2
http://dokupuppylinux.info/programs:screenshot (sorry for malformed page, I need to fix hosting issues)
I remember also
Scrot
https://www.howtoforge.com/tutorial/how ... ith-scrot/
That I heavily used. It depends from imlib2. I should have a binary compiled with very old gcc 4.1.2 in puppy 3.01
Re: Screenshot Utilities -mtpaint snapshot
Posted: Fri Aug 14, 2020 5:18 pm
by stemsee
mikeslr wrote: ↑Thu Aug 13, 2020 9:57 pm
IIRC, 01micko developed the script for using mtpaint's snapshot capability. I think I packaged it as a pet with a desktop file so that I could use it in a taskbar launcher.
The GUI provides four choices for delaying taking a snapshot of your desktop: Now, 2 sec., 5 secs, 10 secs. A snapshot of your entire desktop is taken and opened in mtpaint where you can use all of its capabilities. If you want to preserve only a portion of the screenshot, you 'lasso' the part you want.
mtpaintsnapshot-2.014.pet
or cli
Re: Screenshot Utilities
Posted: Sat Aug 15, 2020 12:05 am
by MochiMoppel
...or GUI with "enhanced user experience"
Code: Select all
for i in 'Shoot the screen after '{5..1}' sec' Fire\!;do echo XXX;echo $i;echo XXX;read -t1;done|Xdialog -but text -can 'Oh no!!' -info '' 220x80 0 && mtpaint -s
Can be run from the command line or script, but I put it directly into my JWM config file as a <Key> tag and assigned shortcut Ctrl+PrintScrn to it. No need for a script file. Requires Xdialog.
Re: Screenshot Utilities
Posted: Sat Aug 15, 2020 4:48 am
by mistfire
You forgot the gtk-screenshot
Re: Screenshot Utilities
Posted: Sat Aug 15, 2020 8:11 am
by darry19662018
Link please Misty....
Re: Screenshot Utilities
Posted: Sat Aug 15, 2020 9:23 am
by greengeek
MochiMoppel wrote: ↑Sat Aug 15, 2020 12:05 am
...or GUI with "enhanced user experience"
Code: Select all
for i in 'Shoot the screen after '{5..1}' sec' Fire\!;do echo XXX;echo $i;echo XXX;read -t1;done|Xdialog -but text -can 'Oh no!!' -info '' 220x80 0 && mtpaint -s
Can be run from the command line or script, but I put it directly into my JWM config file as a <Key> tag and assigned shortcut Ctrl+PrintScrn to it. No need for a script file. Requires Xdialog.
Is there a trick to NOT capturing the terminal into which one has entered this command ?
Re: Screenshot Utilities
Posted: Sun Aug 16, 2020 12:58 am
by MochiMoppel
@greengeek Sure. This will prevent the terminal window from being captured:
Code: Select all
for i in 'Shoot the screen after '{5..1}' sec' Fire\!;do echo XXX;echo $i;echo XXX;read -t1;done|Xdialog -but text -can 'Oh no!!' -info '' 220x80 0 && { mtpaint -s & exit ;}
Re: Screenshot Utilities
Posted: Sun Aug 16, 2020 5:28 am
by greengeek
Thanks, that works perfectly.
Both options would be valuable. Is there any easy way to build a choice into the dialog?
(yes, i know i'm a pain. According to my wife that's my most defining personal characteristic...)
Re: Screenshot Utilities
Posted: Sun Aug 16, 2020 8:18 pm
by mikewalsh
And don't forget Micko's "Screeny":-
http://murga-linux.com/puppy/viewtopic. ... 1bee4d7d2f
Works well with most older Pups; needs xwd. Can be temperemental with newer Pups, though.....can produce a "skew-wiff" shot, b & w, angled to one side.
No idea what the cause of this might be...
Mike.
Re: Screenshot Utilities
Posted: Mon Aug 17, 2020 4:42 am
by MochiMoppel
greengeek wrote: ↑Sun Aug 16, 2020 5:28 am
Thanks, that works perfectly.
Both options would be valuable. Is there any easy way to build a choice into the dialog?
(yes, i know i'm a pain. According to my wife that's my most defining personal characteristic...)
I can see your wife's point
No, there is no easy way. In fact there is no way at all with Xdialog. Maybe yad can do that.
Why would you want to capture the terminal window and why would you want to use the command line at all? Self torture?
Re: Screenshot Utilities
Posted: Mon Aug 17, 2020 11:16 am
by mikewalsh
That's astonishing, mate. A screenshot utility from a 2-series Puppy that works in a current 8-series....
It runs fine in radky's Busterpup8.0 (32-bit)..! Amazing...
Mike.
Re: Screenshot Utilities
Posted: Mon Aug 17, 2020 1:02 pm
by mistfire
Re: Screenshot Utilities
Posted: Mon Aug 17, 2020 4:18 pm
by 666philb
hotshots
https://github.com/obiwankennedy/HotShots
nice as you can annotate and also upload to an image hosting service
Re: Screenshot Utilities
Posted: Mon Aug 17, 2020 4:37 pm
by mikewalsh
Sheesh. I forgot
all about that one....
Mike.
Re: Screenshot Utilities
Posted: Mon Aug 17, 2020 6:45 pm
by darry19662018
Thanks Mistfire
Re: Screenshot Utilities
Posted: Mon Aug 17, 2020 6:47 pm
by darry19662018
mikewalsh wrote: ↑Mon Aug 17, 2020 11:16 am
That's astonishing, mate. A screenshot utility from a 2-series Puppy that works in a current 8-series....
It runs fine in radky's Busterpup8.0 (32-bit)..! Amazing...
Mike.
No Problems Mike enjoy
Tas with uploader to imgur
Posted: Wed Feb 23, 2022 4:30 pm
by 666philb
Here's @JakeSFRs tas 1.15 combined with an imgur uploader from here https://github.com/tremby/imgur.sh
Re: Screenshot Utilities
Posted: Wed Feb 23, 2022 6:14 pm
by tosim
Flameshot is a pretty good app. Can be found in our PPM's for an easy download.
Re: Screenshot Utilities
Posted: Wed Feb 23, 2022 9:53 pm
by mikewalsh
tosim wrote: ↑Wed Feb 23, 2022 6:14 pm
Flameshot is a pretty good app. Can be found in our PPM's for an easy download.
I guess I've tried most of the available screeny apps over the last several years. I tried Flameshot; it was, um.....o-kay (-ish). I found an AppImage over at AppImageHub, made up a tray icon launcher for it, stuck it in /opt,and launched it at boot from /root/Startup.
Apart from TAS - which is a masterpiece of lightweight coding - my current favourite is the KDE Project's KSnip.....a combo screenshot/editor app, rather like Hotshots. Only to MY mind, more logically laid-out & easier to understand than Hotshots....and also in AppImage format.
It's also one of the very few KDE apps I've come across that doesn't look like it was designed by a talented, yet 'backward' child. I don't know what it is about KDE stuff; apart from the last 2 or 3 years, most of the GUIs for their apps have always had a slightly "cartoonish" aspect to them. It's hard to explain; maybe it's just me!
Aside from that, both AppImages are the same size, around 23 MB (both use Qt5, so there's 90% of the reason for the size right there.) But KSnip has an easier-to-understand interface; I've always had the greatest difficulty in figuring out what all those various blobs around the perimeter of Flameshot's 'area/region' window are supposed to do.....
Mike.
Re: Screenshot Utilities
Posted: Thu Feb 24, 2022 4:25 pm
by tosim
@mikewalsh Thanks for the info(re Ksnip); I'll dl and check it out.
Re: Screenshot Utilities
Posted: Thu Feb 24, 2022 4:57 pm
by mikewalsh
@tosim :-
tosim wrote: ↑Thu Feb 24, 2022 4:25 pm
@mikewalsh Thanks for the info(re Ksnip); I'll dl and check it out.
I think I've got a package at MEGA....which I uploaded, yet I don't think I've posted about it. Let's see.....
Yep; here we are:-
https://mega.nz/folder/SOBTxSRD#9zZKeMhkGMleW2TTE57ZtA
I remember now. I didn't bother adding any of the usual MenuEntry scripts'n'stuff, 'cos this thing puts its own icon into the notification area. Just click on it, and it's there, ready-to-use. The only thing I added was a small script in /root/my-applications/bin, linked to /root/Startup to launch it at boot-time.
Your Pup fires up....and it's there in the tray, ready to go. Same as Flameshot, IIRC....
Let me know what you think. You can edit the picture by adding arrows....numbers....text....all sorts of stuff. Quite useful, really. I don't suppose it's so different to all the other screeny apps out there, but it's rare to find KDE apps that don't want the whole of the Plasma desktop AND the Dolphin file-manager before they'll condescend to run. By KDE standards, this one is like a greyhound.....positively slim-line.
Mike.
Re: Screenshot Utilities
Posted: Thu Feb 24, 2022 6:16 pm
by tosim
@mikewalsh Thank you. Got it; checked it out; really good! Thanks again.
Re: Screenshot Utilities
Posted: Thu Feb 24, 2022 9:52 pm
by mow9902
Thanks for this - works great! I personally find it easier to use than the many alternatives.