# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 7
# self = https://watcher.sour.is/conv/sfuqg6a
Does anybody know a right mouse click save and reduce a screen saver image to a smaller file, say 50KB?
My usual method is slow, place in image program and re-save it smaller.

I used to have a Window's way to reduce file images from 1MB to 50 KB with right mouse click.
@off_grid_living No right click thing, but in the terminal:

convert -strip -quality 70 -resize 300x original.jpg resized.jpg

"original.jpg" being the filename of the input file and "resized.jpg" the filename of the output. You can play around with the width, "300x" means 300 pixels wide and the height is determined automatically to still remain in the same ratio. The quality is how much to compress it. The closer to 0 the value gets, the worse the result, but also smaller in file size. More towards 100 and the quality improves together with a larger file size.

You have to install the package "imagemagick" for this to work, I believe.
@lyse and by „install[ing] the package "imagemagick"“ you mean installing a multi-GiB set of tools and libraries. :-D
@lyse and by „install\n the package "imagemagick"“ you mean installing a multi-GiB set of tools and libraries. :-D
I hope not, @bender! I haven't checked, but I'd reckon it to be at most a single digit MiB number. How wrong am I?
@lyse it depends if you already have the needed libraries, and auxiliary packages installed. If you do, then a few hundred MiB, for sure.
@bender Oh dear!