Franchement pour moi Amsn c'est pas possible il es pas dans la liste sinon pour les notifications de mises a jour si ça interresse quelqu'un le script a mettre dans crontab je pense que c'est le meilleur moyen.
#!/bin/sh
NOTIFY=update-notifier
CLIENTINFO=`xwininfo -root -tree | grep "$NOTIFY" `
WINFO=`xwininfo -root -tree | grep "$NOTIFY" | egrep ' (2[0-9]|[2-3][0-9])x(2[0-9]|[2-3][0-9])\+0\+0' | cut -d ')' -f 2-`
WINFO=`echo $WINFO | cut -d 'x' -f 2-`
WINFO=`echo $WINFO | cut -d '+' -f 2-`
WINFO=`echo $WINFO | cut -d '0' -f 2-`
WINFO=`echo $WINFO | cut -d '0' -f 2-`
WIX=`echo $WINFO | cut -d '+' -f 2`
WIY=`echo $WINFO | cut -d '+' -f 3`
WIX=`expr $WIX + 15`
WIY=`expr $WIY + 15`
while true; do
if [ -n "$CLIENTINFO" ] ; then
dbus-send --type=method_call --dest=org.freedesktop.compiz /org/freedesktop/compiz/water/allscreens/point org.freedesktop.compiz.activate string:'root' int32:`xwininfo -root | grep id: | awk '{ print $4 }'` string:'amplitude' double:1000 string:'x' int32:$WIX string:'y' int32:$NOTIFY
break
fi
done
exit 0;