2011-05-09 3 views

답변

1

좋아, 피진에 대한 알림 작업이 있습니다. 피진 사이트에서 첫째, '명령 통지'플러그인, download

는 다음과 같이 플러그인이 쉘 스크립트를 실행 구성 :

#!/bin/bash 

owins=$(wmiir ls /client | grep -v -e 'sel') 
for owin in $owins; do 
    wincount=$(wmiir read /client/$owin/props | grep -c -e "Pidgin:Pidgin") 
    if [ $wincount != 0 ]; then 
    wmiir xwrite /client/$owin/ctl Urgent off 
    wmiir xwrite /client/$owin/ctl Urgent on 
    wmiir xwrite /event Notice "You have new message!" 
    fi 
done