
00pidgin
By: a guest on
May 5th, 2012 | syntax:
Bash | size: 0.24 KB | hits: 19 | expires: Never
#!/bin/sh
#
# 00pidgin: set offline/online status
case "$1" in
hibernate|suspend)
su -c 'purple-remote setstatus?status=offline' neutrino
;;
thaw|resume)
su -c 'purple-remote setstatus?status=available' neutrino
;;
*) exit $NA
;;
esac