From 61d59180b875573f8fa42e084d8e66a6b12b61f3 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Fri, 1 May 2020 10:55:17 +0200 Subject: grimshot: Avoid screenshots overwriting each other Due to the date format used, if several screenshots are taken in succession, each one overwrote the other. This change set makes each one have a different name to avoid this. Also avoid using spaces, since many scripts and tools are unhappy with file names with spaces. --- contrib/grimshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/grimshot b/contrib/grimshot index 3ef18ce6..028fd935 100755 --- a/contrib/grimshot +++ b/contrib/grimshot @@ -28,7 +28,7 @@ getTargetDirectory() { ACTION=${1:-usage} SUBJECT=${2:-screen} -FILE=${3:-$(getTargetDirectory)/$(date +'Grimshot %Y-%m-%d %H-%M-%S.png')} +FILE=${3:-$(getTargetDirectory)/$(date -Ins).png} if [ "$ACTION" = "usage" ] ; then echo "Usage:" -- cgit v1.2.3-54-g00ecf