repo.or.cz
/
vpm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #7 from duckwork/master
[vpm.git]
/
screenshots
/
screenshot-utility.sh
blob
69c4be44543b428558a4c4310e56b3035a1ce488
1
#!/bin/sh
2
format
=
png
3
while
true
;
do
name
=
"vpm_screenshot_$(date +%Y-%m-%d--%H-%M-%S)"
;
echo
"===
$name
.
${format}
"
;
scrot
"
$name
.
${format}
"
;
sleep
10
;
done
4