diff options
author | Hugo Osvaldo Barrera <hugo@barrera.io> | 2020-05-01 10:55:17 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-05-05 20:18:19 +0200 |
commit | 61d59180b875573f8fa42e084d8e66a6b12b61f3 (patch) | |
tree | bd53c53c82070dd4bb069364120c901c6fdacd94 /contrib | |
parent | dce8abcdab7a0a65c27e5280b702a592ab557be6 (diff) | |
download | sway-61d59180b875573f8fa42e084d8e66a6b12b61f3.tar.xz |
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.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/grimshot | 2 |
1 files changed, 1 insertions, 1 deletions
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:" |