aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/opie-taskbar/opie-taskbar/03opiesignal
blob: 31da5876cde6d8f3ae69ce3668f0fb9bad79c7f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

export QTDIR=/usr/lib/opie
if [ "$1" = "suspend" ]; then
	/usr/bin/qcop QPE/System systemSuspend\(\)
elif [ "$1" = "resume" ] && [ "$2" != "standby" ]; then
	/usr/bin/qcop QPE/System systemResume\(\)
fi

: exit 0