Bryan,<br><br>You could try something like this:<br><br>Install zenity if it&#39;s not already in your system. It&#39;s a small package unless you have to delve into a lot of dependencies. It allows you to use the gtk widget set to display dialogs.
<br><br>Then put something like this in a bash script that runs in cron every 5 minutes:<br><br>#!/bin/bash<br>SPACE=`df -h|head -n 3|tail -n 1|awk &#39;{ print $3 }&#39;|sed &#39;s/G//g&#39;`<br>SPACEDESIRED=5<br>if [ $SPACE -le $SPACEDESIRED ] ;
<br>then<br>zenity --error --text &quot;There is only $SPACE GB of space remaining on the system. You must delete 3-5 recorded programs to have enough space to record anything new.&quot;<br>fi<br><br>I don&#39;t know if you can get zenity dialogs to listen to LIRC, but mythnotify or wifeypopup could be used in subsitution for zenity in the above example.
<br><br><br>Joe<br>