Hello JayM and hello ceeslans and everyone
Quickshot is the type of screen capture that i would reach for most often.
ceeslans Your menu list shows use of scripts, not use of commands. ,So I am wondering is that making trial of Quickshot or a script with <scrot>?
Do you find the same(?):
While outlining how to maneuver files from scrot into chosen folder location
Can be shared another way to get the scrot into a chosen folder. scrot saves to current directory. cd to the chosen directory, then scrot.
Passing no name to scrot gives timestamp-name and saves into current directory.
Passing a name and type to scrot applies name and saves into current directory using numbering for overwrite protection. ((Unless a part of that name describes a directory other than the current directory.))
like example from -quickshot script:
Code: Select all
take_shot () {
cd ${DESTDIR}
scrot -s -q 80 -d 2
}
or
Code: Select all
take_shot () {
cd ${DESTDIR}
scrot ${OPTION}
}
result is timestamp file in favorite folder.
Happy to see shared screenshots. Thanks everyone.