Das Script einfach irgendwohin kopieren, im mlDonkey "download.ini" bei "file_completed_cmd" den pfad und namen zum script eintragen, dbox-ip oder hostname im script eintragen und ausführbar machen, fertig
Dann nur noch warten, bis nen File eintrudelt
Getestet mit mlDonkey 2.00 und AlexW 1.6.3 mit cramfs vom 5. Januar 2002.
Funktioniert übrigens auch mit Enigma, wie ich grade feststellen konnte
Have fun
Code: Alles auswählen
#!/bin/sh
# This small script shows up a messagebox on your dbox2
# whenever your mlDonkey client has completed a
# file download.
#
# Installation:
# Put this file in your mlDonkey directory and make it
# executeable. Set your dbox's hostname or ipaddress below.
# Edit your mldonkey's downloads.ini and enter the
# name of this script at the value for
# "file_completed_cmd", e.g. "./dbox_notice"
#
# Enjoy.
#
# Comments? Improvements?
# mailto:chef@geniusatwork.de
#
declare dboxip=192.168.0.30
declare out="`echo $3 | fold -w 40`"
lynx --source "http://$dboxip/control/message?nmsg=mlDonkey received new file:%0A%0A$out"