I’ve been using Shutter for screenshotting since forever I suppose. About a month ago it stopped working because of non-resolved dependencies, and I didn’t care enough to solve the problem, kinda stopped using it, so I just removed it.
A couple of days ago I wanted to capture my screen and I searched for another tool, then I found this awesome tool: Flameshot It’s lite, fast, and has all the features I needed.
If you want to capture your screen. I highly recommend flameshot.
Shutter has been removed from the Debian world, tracker Debian or Jeremy Bicha, and continuous in Arch, for a short time, probably …
But it still works here, even received an update this days … hahaha…
But we have other options, no doubt.
Some time ago I installed the maim but I did not set it or remember it anymore, it follows the line of good old scrot but with new features, it’s worth trying and does not bring qt libraries like the others, so I think it’s more “skinny” and if it fits well with Openbox, I’m not saying that others do not work , but we always look for something small, light and effective, this is fact.
This is the script I use, stolen from Dylan the Pywal dude.
#!/usr/bin/env bash
#
# Take a screenshot and display a notification.
#
# Created by Dylan Araps.
#
# Depends on: imagemagick, libnotify (patched with id support)
# Screenshot directory
scr_dir="${HOME}/Screenshots/ArchLabs"
mkdir -p "$scr_dir" || { printf "%s\n" "Error: Couldn't create screenshot directory"; exit; }
# Use printf to store the current date/time as variables.
printf -v date "%(%F)T"
printf -v time "%(%I-%M-%S)T"
# Create current date format.
mkdir -p "${scr_dir}/${date}"
# Name the screenshot
scr="${scr_dir}/${date}/${date}-${time}.png"
notify-send " Saved screenshot as ${scr/*\/}"
scrot -cd 10 "$scr"