How to take screenshots with a timestamp and date stamp (with scrot command)? I forget the dates and i dont have time to go to properties and see the date. also, dates aren't written on the panel even! i use lubuntu 13.10 and 512 mb ram
How to take screenshots with a timestamp and date stamp (with scrot command)? I forget the dates and i dont have time to go to properties and see the date. also, dates aren't written on the panel even! i use lubuntu 13.10 and 512 mb ram
Because
scrot
automatically names the files according to the date on my Lubuntu I think you are not looking for the filename to be the date but to put the date in the picture.If you want the date to be shown on the panel in Lubuntu:
Right click on the clock in the panel and select "Digital Clock" Settings.
Edit Clock Format so it reads
%x %R
.Close that window.
If you want some other date formatting just look up the available options in
man strftime
.Or to append the date to a picture you can install
imagemagick
withsudo apt-get install imagemagick
and then usescrot
with the following command:This command will append the date below the picture. If you want it to be somewhere else in the picture, in other size, or overlapping the picture, etc. please lookup the documentation of
imagemagick
and modify the above command accordingly. To modify simply the date format refer again toman sfrtime
and change"%x %X"
accordingly.