diff options
Diffstat (limited to 'recipes/scap/files')
-rw-r--r-- | recipes/scap/files/scap.desktop | 9 | ||||
-rw-r--r-- | recipes/scap/files/scap.png | bin | 0 -> 628 bytes | |||
-rw-r--r-- | recipes/scap/files/scap.sh | 20 |
3 files changed, 29 insertions, 0 deletions
diff --git a/recipes/scap/files/scap.desktop b/recipes/scap/files/scap.desktop new file mode 100644 index 0000000000..bba17259bb --- /dev/null +++ b/recipes/scap/files/scap.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=Upload Screenshot +Comment=Upload a screenshot to http://handhelds.org/scap +Exec=scap +Terminal=0 +Type=Application +Icon=scap.png +Categories=Action +StartupNotify=False diff --git a/recipes/scap/files/scap.png b/recipes/scap/files/scap.png Binary files differnew file mode 100644 index 0000000000..ed7f09fd72 --- /dev/null +++ b/recipes/scap/files/scap.png diff --git a/recipes/scap/files/scap.sh b/recipes/scap/files/scap.sh new file mode 100644 index 0000000000..ea3ff24593 --- /dev/null +++ b/recipes/scap/files/scap.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +sleep 2 +if [ -x /usr/bin/bl ]; then + bl off +fi +MODEL=`cat /proc/cpuinfo | grep ^Hardware | sed "s/.* //"` +test -e /etc/scap.conf && USER=`cat /etc/scap.conf` +RES=`fbset 2>/dev/null | awk "/geometry/ { print \$2 "x" \$3 }"` +(echo "POST /scap/capture.cgi?$MODEL+$USER+$RES HTTP/1.1" + echo -n Content-length: + cat /dev/fb0 | wc -c + echo "Content-Type: image/gif" + echo "Host: www.handhelds.org" + echo "" + cat /dev/fb0) | nc www.handhelds.org 80 +if [ -x /usr/bin/bl ]; then + bl on +fi + |