Manually using scap
From Openmoko
(Difference between revisions)
(catchg) |
|||
| (7 intermediate revisions by 3 users not shown) | |||
| Line 9: | Line 9: | ||
-F file=@$n \ | -F file=@$n \ | ||
-F key=secret \ | -F key=secret \ | ||
| − | -F model= | + | -F model=`uname -n` \ |
-F submit=Upload \ | -F submit=Upload \ | ||
-F text=no\ comment \ | -F text=no\ comment \ | ||
| Line 20: | Line 20: | ||
that's all. | that's all. | ||
| + | ==See also== | ||
| + | *[[Gpe-scap]] | ||
| + | |||
| + | [[Category:Applications]] | ||
| + | [[Category:Middleware]] | ||
| + | [[Category:Screen]] | ||
Latest revision as of 07:23, 21 July 2009
[edit] Screen shot upload service scap
If you don't use the standard gui and your neo lacks the menu entry for scap you can do the same with a simple shell script:
#!/bin/sh -e n=/tmp/scap$$.png fbgrab $n curl \ -F file=@$n \ -F key=secret \ -F model=`uname -n` \ -F submit=Upload \ -F text=no\ comment \ http://scap.linuxtogo.org/tickle.php rm $n
you need the packages for curl and fbgrab:
ipkg install fbgrab curl
that's all.
