Skip to content

Instantly share code, notes, and snippets.

@iiiypuk
Created August 13, 2013 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iiiypuk/6217871 to your computer and use it in GitHub Desktop.
Save iiiypuk/6217871 to your computer and use it in GitHub Desktop.
#!/bin/sh
#
# скрипт для упрощения использования утилиты scrot
#
#SCREENDIR='' - не реализовано!
DELAY=$1
if [ -z $DELAY ]
then
scrot '%Y-%m-%d_%H.%M.%S-scrot.png' -e 'mv $f /home/alex/Images/Screenshots/ ;\
echo $f complete';
else
scrot '%Y-%m-%d_%H.%M.%S-scrot.png' -e 'mv $f /home/alex/Images/Screenshots/' -cd $DELAY
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment