Flameshot – Open-source screenshot software
61–70 of 132 posts
Re: Flameshot – Open-source screenshot software
#62Every screenshot tool I've ever come across has a blur tool but no cut tool. So I just use the OS specific screenshoter and then load it up in an image editor and cut to my hearts content.
Re: Flameshot – Open-source screenshot software
#63I don't understand the fascination with blur. It's terrible from a security/privacy perspective. The data is still in the image. Sure you can add randomization to the blur to make it less easy to undo(I haven't looked if Flameshot does or not, most don't). If you crop the stuff you want out of the image, there is no data there to do anything with. Every screenshot tool I've ever come across has a blur tool but no cut…
Re: Flameshot – Open-source screenshot software
#64Seems very simple to me and avoids browsers, cloud storage, and other potential pitfalls.
Re: Flameshot – Open-source screenshot software
#65I use the following script (activated by a system-level shortcut key) to take a screenshot, upload to S3 bucket (using the minio client[0]) and place the URL in the X selection buffer, ready to be pasted: #!/bin/bash set -e dbus-update-activation-environment DISPLAY XAUTHORITY FNAME=`cat /dev/urandom | tr -cd 'a-f0-9' | head -c 32`.png flameshot gui --raw > /tmp/$FNAME ~/go/bin/mc -q cp --attr x-amz-acl=public-read /…
Re: Flameshot – Open-source screenshot software
#66For screenshots I use 'scrot' and then open the image in gimp if I need to crop or edit further. Seems very simple to me and avoids browsers, cloud storage, and other potential pitfalls. https://github.com/resurrecting-open-source-projects/scrot
But flameshot is extremely fast and does 95% of what I'd do in gimp anyway, without having to open a whole image editor and saving a picture. I can directly copy it to the clipboard and paste it somewhere.
Re: Flameshot – Open-source screenshot software
#67For screenshots I use 'scrot' and then open the image in gimp if I need to crop or edit further. Seems very simple to me and avoids browsers, cloud storage, and other potential pitfalls. https://github.com/resurrecting-open-source-projects/scrot
Flameshot is local. May have a subscription service, not sure. But flameshot is extremely fast and does 95% of what I'd do in gimp anyway, without having to open a whole image editor and saving a picture. I can directly copy it to the clipboard and paste it somewhere.
I'm actually about as likely to just pull out my phone and take a picture of the screen as to use software-based screenshots.
Re: Flameshot – Open-source screenshot software
#68For the last 10(ish) years I've been using Greenshot [1]. I haven't found any issues with it but it is only available on Windows and Mac. [1] https://getgreenshot.org/
Re: Flameshot – Open-source screenshot software
#69I don't understand the fascination with blur. It's terrible from a security/privacy perspective. The data is still in the image. Sure you can add randomization to the blur to make it less easy to undo(I haven't looked if Flameshot does or not, most don't). If you crop the stuff you want out of the image, there is no data there to do anything with. Every screenshot tool I've ever come across has a blur tool but no cut…
But the fascination is easily explained - it looks better as it "fits" the rest of your image vs having some jarring black rectangle
Re: Flameshot – Open-source screenshot software
#70I use the following script (activated by a system-level shortcut key) to take a screenshot, upload to S3 bucket (using the minio client[0]) and place the URL in the X selection buffer, ready to be pasted: #!/bin/bash set -e dbus-update-activation-environment DISPLAY XAUTHORITY FNAME=`cat /dev/urandom | tr -cd 'a-f0-9' | head -c 32`.png flameshot gui --raw > /tmp/$FNAME ~/go/bin/mc -q cp --attr x-amz-acl=public-read /…
I forget, do you pay for bandwidth serving from S3 in this case? I have been looking for a good screenshot hosting solution to replace Cloudup, which was perfect and still usually works but I figure it might stop any day now. My only worry would be the unlikely case of a surprise high bill from a screenshot gone viral or something along those lines.