Comment 48 for bug 779717

Revision history for this message
Andreas Jonsson (sonofjon) wrote :

Temporary workaround for those still having problems: Run this script in the background to restart indicator-multiload every hour:

#!/bin/sh

export DISPLAY=:0

while true
do
    killall -q indicator-multiload
    /usr/bin/indicator-multiload >/dev/null 2>&1 &
    sleep 3600
done