This is my go-to screenshot tool on Linux. For Linux users who also use Google Photos already, you may not realize this but the Google Photos web app accepts paste from system clipboard via Ctrl+V in the browser. Thus, my workflow if I want to save a screenshot for later is to call up flameshot in rectangular selection mode (I bind it to the PrtScn key), select my screenshot area, Ctrl+C to copy it to clipboard, navi…
Flameshot – Open-source screenshot software
71–80 of 132 posts
Re: Flameshot – Open-source screenshot software
#72Re: Flameshot – Open-source screenshot software
#73I 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
#74I 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
#75Not super cool with aesthetics but it's flawless so yeah.
Re: Flameshot – Open-source screenshot software
#76Re: Flameshot – Open-source screenshot software
#77Re: Flameshot – Open-source screenshot software
#78Re: Flameshot – Open-source screenshot software
#79The UI and features look well-polished. I use ShareX, another open-source tool but only available for Windows. However, a crucial feature for me is quick screen recording (GIF or MP4), which Flameshot seems to lack. Does it have this feature? It's not mentioned on the landing page.