<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: UNIX Get An Alert When Disk Is Full</title> <atom:link href="http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/feed/" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/</link> <description>Every answer asks a more beautiful question.</description> <lastBuildDate>Fri, 10 Feb 2012 19:55:56 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: manvstech</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-64993</link> <dc:creator>manvstech</dc:creator> <pubDate>Tue, 29 Nov 2011 22:07:32 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-64993</guid> <description>Easy fix, change the last line of the script from:
/usr/bin/zenity  --warning  --text=&quot;The disk $FS ($CURRENT% used) is almost full. Delete some files or add a new disk.&quot; --title=&quot;df Warning&quot;
to
/usr/bin/zenity  --notification  --text=&quot;The disk $FS ($CURRENT% used) is almost full. Delete some files or add a new disk.&quot;</description> <content:encoded><![CDATA[<p>Easy fix, change the last line of the script from:<br
/> /usr/bin/zenity  &#8211;warning  &#8211;text=&#8221;The disk $FS ($CURRENT% used) is almost full. Delete some files or add a new disk.&#8221; &#8211;title=&#8221;df Warning&#8221;<br
/> to<br
/> /usr/bin/zenity  &#8211;notification  &#8211;text=&#8221;The disk $FS ($CURRENT% used) is almost full. Delete some files or add a new disk.&#8221;</p> ]]></content:encoded> </item> <item><title>By: Mark Shields</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-64416</link> <dc:creator>Mark Shields</dc:creator> <pubDate>Sun, 13 Nov 2011 17:37:38 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-64416</guid> <description>No need to use grep and awk together, at least not in the context you&#039;re using it.  And sed is a bit of an overkill; use tr instead.
&lt;pre&gt;df -P /usr &#124; awk &#039;/\/usr/{ printf $5}&#039; &#124; tr -d &quot;%&quot;&lt;/pre&gt;</description> <content:encoded><![CDATA[<p>No need to use grep and awk together, at least not in the context you&#8217;re using it.  And sed is a bit of an overkill; use tr instead.</p><pre>df -P /usr | awk '/\/usr/{ printf $5}' | tr -d "%"</pre>]]></content:encoded> </item> <item><title>By: Jeroen</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43142</link> <dc:creator>Jeroen</dc:creator> <pubDate>Sat, 15 Aug 2009 22:20:09 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43142</guid> <description>Hai Vivek and petrescs,
The updating of the user cronjob worked fine so I changed my user crontab with the &quot;DISPLAY=:0.0&quot; . I am not sure what the extra value is of the /etc/profile.d/run.cron.gui.sh. With or without it my shell script starts and finishes and produces ( as far as I can see ) the same results.
This &quot;DISPLAY=:0.0&quot; added to the cronjob solved for me other problems that output could not be showed on the display and gui applications could not be executed.
Thank you @petrescs and @vivek for the answers to my questions. They were very helpful.
Jeroen</description> <content:encoded><![CDATA[<p>Hai Vivek and petrescs,</p><p>The updating of the user cronjob worked fine so I changed my user crontab with the &#8220;DISPLAY=:0.0&#8243; . I am not sure what the extra value is of the /etc/profile.d/run.cron.gui.sh. With or without it my shell script starts and finishes and produces ( as far as I can see ) the same results.</p><p>This &#8220;DISPLAY=:0.0&#8243; added to the cronjob solved for me other problems that output could not be showed on the display and gui applications could not be executed.</p><p>Thank you @petrescs and @vivek for the answers to my questions. They were very helpful.</p><p>Jeroen</p> ]]></content:encoded> </item> <item><title>By: Shantanu Oak</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43129</link> <dc:creator>Shantanu Oak</dc:creator> <pubDate>Sat, 15 Aug 2009 06:00:35 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43129</guid> <description>How about twittering the alert?
# Twit the disk status alert away
[ $CURRENT -gt $THRESHOLD ] &amp;&amp; curl --basic --user username:password --data status=&quot;$FS file system usage $CURRENT&quot; http://twitter.com/statuses/update.xml</description> <content:encoded><![CDATA[<p>How about twittering the alert?<br
/> # Twit the disk status alert away<br
/> [ $CURRENT -gt $THRESHOLD ] &amp;&amp; curl &#8211;basic &#8211;user username:password &#8211;data status=&#8221;$FS file system usage $CURRENT&#8221; <a
href="http://twitter.com/statuses/update.xml" rel="nofollow">http://twitter.com/statuses/update.xml</a></p> ]]></content:encoded> </item> <item><title>By: Jeroen</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43124</link> <dc:creator>Jeroen</dc:creator> <pubDate>Fri, 14 Aug 2009 20:35:30 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43124</guid> <description>Woooohhhhh, I just wanted to react on this response : petrescs 08.14.09 at 6:15 pm
That was a great one and did the trick....
Vivek : I will try this tomorrow....its getting late here...
Thanks every one,
Jeroen</description> <content:encoded><![CDATA[<p>Woooohhhhh, I just wanted to react on this response : petrescs 08.14.09 at 6:15 pm<br
/> That was a great one and did the trick&#8230;.</p><p>Vivek : I will try this tomorrow&#8230;.its getting late here&#8230;</p><p>Thanks every one,</p><p>Jeroen</p> ]]></content:encoded> </item> <item><title>By: Vivek Gite</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43122</link> <dc:creator>Vivek Gite</dc:creator> <pubDate>Fri, 14 Aug 2009 19:41:26 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43122</guid> <description>@Jeroen
You need to run it as follows /etc/profile.d/run.cron.gui.sh:
&lt;pre&gt;#!/bin/sh
# replace vivek with actual username, see xhost man page ;)
/usr/bin/xhost +si:localuser:vivek&lt;/pre&gt;
Set permissions:
&lt;pre&gt;chmod +x /etc/profile.d/run.cron.gui.sh&lt;/pre&gt;
Finally update your cronjob:
&lt;pre&gt;36 19 * * *  DISPLAY=:0.0 /home/paula/shells/check_partitions_sizes.sh&lt;/pre&gt;
OR assuming that you are always on 0.0
&lt;pre&gt;36 19 * * *  DISPLAY=:0.0 &amp;&amp; /home/paula/shells/check_partitions_sizes.sh&lt;/pre&gt;
HTH</description> <content:encoded><![CDATA[<p>@Jeroen</p><p>You need to run it as follows /etc/profile.d/run.cron.gui.sh:</p><pre>#!/bin/sh
# replace vivek with actual username, see xhost man page ;)
/usr/bin/xhost +si:localuser:vivek</pre><p>Set permissions:</p><pre>chmod +x /etc/profile.d/run.cron.gui.sh</pre><p>Finally update your cronjob:</p><pre>36 19 * * *  DISPLAY=:0.0 /home/paula/shells/check_partitions_sizes.sh</pre><p>OR assuming that you are always on 0.0</p><pre>36 19 * * *  DISPLAY=:0.0 &#038;&#038; /home/paula/shells/check_partitions_sizes.sh</pre><p>HTH</p> ]]></content:encoded> </item> <item><title>By: Bash</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43120</link> <dc:creator>Bash</dc:creator> <pubDate>Fri, 14 Aug 2009 18:55:20 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43120</guid> <description>You can get rid of sed like so:
echo &quot;${output[11]/\%/}&quot;</description> <content:encoded><![CDATA[<p>You can get rid of sed like so:</p><p>echo &#8220;${output[11]/\%/}&#8221;</p> ]]></content:encoded> </item> <item><title>By: petrescs</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43117</link> <dc:creator>petrescs</dc:creator> <pubDate>Fri, 14 Aug 2009 18:15:06 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43117</guid> <description>@Jeroen: Try add &quot;DISPLAY=:0.0&quot; (those are zero, not lowercase O, and no quotes) as first line in your user crontab.</description> <content:encoded><![CDATA[<p>@Jeroen: Try add &#8220;DISPLAY=:0.0&#8243; (those are zero, not lowercase O, and no quotes) as first line in your user crontab.</p> ]]></content:encoded> </item> <item><title>By: Jeroen</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43116</link> <dc:creator>Jeroen</dc:creator> <pubDate>Fri, 14 Aug 2009 17:49:29 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43116</guid> <description>Hello,
I used also the method of relabelling with mlabel and this works great and much faster then with gparted. I added an entry in the crontab but when this job runs it cannot display the warnings. I get this  in the mail :
(zenity:21175): Gtk-WARNING **: cannot open display:
/media/FREECOM_HDD932
Is this something from Fedora 8 with crontab ??
This was my entry :
36 19 * * * /home/paula/shells/check_partitions_sizes.sh
Regards,
Jeroen</description> <content:encoded><![CDATA[<p>Hello,</p><p>I used also the method of relabelling with mlabel and this works great and much faster then with gparted. I added an entry in the crontab but when this job runs it cannot display the warnings. I get this  in the mail :<br
/> (zenity:21175): Gtk-WARNING **: cannot open display:<br
/> /media/FREECOM_HDD932</p><p>Is this something from Fedora 8 with crontab ??</p><p>This was my entry :<br
/> 36 19 * * * /home/paula/shells/check_partitions_sizes.sh</p><p>Regards,</p><p>Jeroen</p> ]]></content:encoded> </item> <item><title>By: Jeroen</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43115</link> <dc:creator>Jeroen</dc:creator> <pubDate>Fri, 14 Aug 2009 15:50:02 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43115</guid> <description>Hey petrescs,
Yes this is great. I was banging my head on this because I relabelled an usb disk before. But then there was no data on it so I put a fat filesystem on it with the correct label. This usb drive has lots of data on it so I am a little bit more carefull with it. I did not know Gnome was able to do this but I am just checking this out with gParted and I it did the job oke.
Thanks, great call,
Jeroen</description> <content:encoded><![CDATA[<p>Hey petrescs,</p><p>Yes this is great. I was banging my head on this because I relabelled an usb disk before. But then there was no data on it so I put a fat filesystem on it with the correct label. This usb drive has lots of data on it so I am a little bit more carefull with it. I did not know Gnome was able to do this but I am just checking this out with gParted and I it did the job oke.</p><p>Thanks, great call,</p><p>Jeroen</p> ]]></content:encoded> </item> <item><title>By: petrescs</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43113</link> <dc:creator>petrescs</dc:creator> <pubDate>Fri, 14 Aug 2009 15:16:46 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43113</guid> <description>@Jeroen:  have not tried this, but it can help you https://help.ubuntu.com/community/RenameUSBDrive</description> <content:encoded><![CDATA[<p>@Jeroen:  have not tried this, but it can help you <a
href="https://help.ubuntu.com/community/RenameUSBDrive" rel="nofollow">https://help.ubuntu.com/community/RenameUSBDrive</a></p> ]]></content:encoded> </item> <item><title>By: Jeroen</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43112</link> <dc:creator>Jeroen</dc:creator> <pubDate>Fri, 14 Aug 2009 15:06:14 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43112</guid> <description>Hai Vivek
Thanks for the quick response on my email. Yes this mount point is automatically made for the usb drive under Fedora 8 at rebooting time. I suppose the usb drive is FAT32  formatted and given as label this name. I will find a way to give the usb drive a correct name without the spaces. Then it will be mounted correctly at startup. I suppose another way is to mount this usb drive manually under /media/freecomhdd for example.
Thanks,
Jeroen</description> <content:encoded><![CDATA[<p>Hai Vivek</p><p>Thanks for the quick response on my email. Yes this mount point is automatically made for the usb drive under Fedora 8 at rebooting time. I suppose the usb drive is FAT32  formatted and given as label this name. I will find a way to give the usb drive a correct name without the spaces. Then it will be mounted correctly at startup. I suppose another way is to mount this usb drive manually under /media/freecomhdd for example.</p><p>Thanks,</p><p>Jeroen</p> ]]></content:encoded> </item> <item><title>By: Vivek Gite</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43111</link> <dc:creator>Vivek Gite</dc:creator> <pubDate>Fri, 14 Aug 2009 14:37:53 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43111</guid> <description>This line should be corrected
&lt;pre&gt;FSfreecomhdd=&quot;/media/FREECOM HDD&quot;&lt;/pre&gt;
HDD is not a valid mount point, use full path like /usr /home /www
&lt;pre&gt;FSfreecomhdd=&quot;/media/FREECOM / /home /www&quot;&lt;/pre&gt;</description> <content:encoded><![CDATA[<p>This line should be corrected</p><pre>FSfreecomhdd="/media/FREECOM HDD"</pre><p>HDD is not a valid mount point, use full path like /usr /home /www</p><pre>FSfreecomhdd="/media/FREECOM / /home /www"</pre>]]></content:encoded> </item> <item><title>By: Jeroen</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43109</link> <dc:creator>Jeroen</dc:creator> <pubDate>Fri, 14 Aug 2009 14:07:26 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43109</guid> <description>Hello there,
Now when I change this to the following ( note the space between the &quot;M&quot; and the &quot;H&quot; in &quot;/media/FREECOM HDD&quot;:
&lt;pre&gt;#!/bin/bash
# Tested Under FreeBSD and OS X
# File systems ( partitions )
FSfreecomhdd=&quot;/media/FREECOM HDD&quot;
# Everything above 85 will be given a yellow card for warning
THRESHOLD=85
# Check given file systems for size
for FS in $FSfreecomhdd ; do
echo $FS
OUTPUT=($(LC_ALL=C df -P $FS))
CURRENT=$(echo ${OUTPUT[11]} &#124; sed &#039;s/%//&#039;)
[ $CURRENT -gt $THRESHOLD ] &amp;&amp; /usr/bin/zenity  --warning  --text=&quot;The disk ${OUTPUT[12]} ($CURRENT% used) is almost full. Delete some files.&quot; --title=&quot;df Warning&quot;
done&lt;/pre&gt;
it does not work anymore.
Output will be :
df: `/media/FREECOM&#039;: No such file or directory
df: no file systems processed
./check_partitions_sizes_simple.sh: line 15: [: -gt: unary operator expected
df: `HDD&#039;: No such file or directory
df: no file systems processed
./check_partitions_sizes_simple.sh: line 15: [: -gt: unary operator expected
With or without the escape character like FSfreecomhdd=&quot;/media/FREECOM\ HDD&quot; does not mather.
The &quot;df - P&quot; will treat it as 2 strings which is obviously not my purpose.
Is there another way to escape the space so that df will accept and treat this as 1 string in stead of 2 ??
Thanks in advance,
Jeroen
p.s. great website for shell programming and linux things !!!</description> <content:encoded><![CDATA[<p>Hello there,</p><p>Now when I change this to the following ( note the space between the &#8220;M&#8221; and the &#8220;H&#8221; in &#8220;/media/FREECOM HDD&#8221;:</p><pre>#!/bin/bash
# Tested Under FreeBSD and OS X
# File systems ( partitions )
FSfreecomhdd="/media/FREECOM HDD"
# Everything above 85 will be given a yellow card for warning
THRESHOLD=85
# Check given file systems for size
for FS in $FSfreecomhdd ; do
	echo $FS
	OUTPUT=($(LC_ALL=C df -P $FS))
	CURRENT=$(echo ${OUTPUT[11]} | sed 's/%//')
	[ $CURRENT -gt $THRESHOLD ] &amp;&amp; /usr/bin/zenity  --warning  --text="The disk ${OUTPUT[12]} ($CURRENT% used) is almost full. Delete some files." --title="df Warning"
done</pre><p>it does not work anymore.</p><p>Output will be :<br
/> df: `/media/FREECOM&#8217;: No such file or directory<br
/> df: no file systems processed<br
/> ./check_partitions_sizes_simple.sh: line 15: [: -gt: unary operator expected<br
/> df: `HDD&#8217;: No such file or directory<br
/> df: no file systems processed<br
/> ./check_partitions_sizes_simple.sh: line 15: [: -gt: unary operator expected</p><p>With or without the escape character like FSfreecomhdd=&#8221;/media/FREECOM\ HDD&#8221; does not mather.</p><p>The &#8220;df &#8211; P&#8221; will treat it as 2 strings which is obviously not my purpose.</p><p>Is there another way to escape the space so that df will accept and treat this as 1 string in stead of 2 ??</p><p>Thanks in advance,</p><p>Jeroen</p><p>p.s. great website for shell programming and linux things !!!</p> ]]></content:encoded> </item> <item><title>By: Carmen</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43089</link> <dc:creator>Carmen</dc:creator> <pubDate>Thu, 13 Aug 2009 19:13:34 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43089</guid> <description>Thank you!!
That was very useful.</description> <content:encoded><![CDATA[<p>Thank you!!<br
/> That was very useful.</p> ]]></content:encoded> </item> <item><title>By: petrescs</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43085</link> <dc:creator>petrescs</dc:creator> <pubDate>Thu, 13 Aug 2009 17:53:58 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43085</guid> <description>@Carmen: there&#039;s no /usr in your case, just / (that is, root)
Try df -P / &#124; grep / &#124; awk &#039;{ print $5}&#039; &#124; sed &#039;s/%//g&#039; instead</description> <content:encoded><![CDATA[<p>@Carmen: there&#8217;s no /usr in your case, just / (that is, root)<br
/> Try df -P / | grep / | awk &#8216;{ print $5}&#8217; | sed &#8216;s/%//g&#8217; instead</p> ]]></content:encoded> </item> <item><title>By: Carmen</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43082</link> <dc:creator>Carmen</dc:creator> <pubDate>Thu, 13 Aug 2009 17:27:58 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43082</guid> <description>Hello,
I tried to use this script in my Ubuntu.
First,
# df -P /usr
S.ficheros         Bloques de 1024     Usado Libre Ocupado Montado en
/dev/sda4             12399800   9341132   2433740      80% /
# df -P /usr &#124; grep /usr &#124; awk &#039;{ print $5}&#039; &#124; sed &#039;s/%//g&#039;
no answer..., and I was waiting for an output: 80
What is wrong with that?
Thanks in advance, I&#039;m learning from you how to make scripts.</description> <content:encoded><![CDATA[<p>Hello,<br
/> I tried to use this script in my Ubuntu.<br
/> First,<br
/> # df -P /usr</p><p>S.ficheros         Bloques de 1024     Usado Libre Ocupado Montado en</p><p>/dev/sda4             12399800   9341132   2433740      80% /</p><p># df -P /usr | grep /usr | awk &#8216;{ print $5}&#8217; | sed &#8216;s/%//g&#8217;<br
/> no answer&#8230;, and I was waiting for an output: 80<br
/> What is wrong with that?</p><p>Thanks in advance, I&#8217;m learning from you how to make scripts.</p> ]]></content:encoded> </item> <item><title>By: Jaysunn</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43080</link> <dc:creator>Jaysunn</dc:creator> <pubDate>Thu, 13 Aug 2009 15:54:08 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43080</guid> <description>COOOOOl!!!
I was unaware of zenity.  Very sweet.
Jaysunn</description> <content:encoded><![CDATA[<p>COOOOOl!!!</p><p>I was unaware of zenity.  Very sweet.</p><p>Jaysunn</p> ]]></content:encoded> </item> <item><title>By: Vivek Gite</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43077</link> <dc:creator>Vivek Gite</dc:creator> <pubDate>Thu, 13 Aug 2009 13:44:36 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43077</guid> <description>@petrescs,
The FAQ has been updated.</description> <content:encoded><![CDATA[<p>@petrescs,</p><p>The FAQ has been updated.</p> ]]></content:encoded> </item> <item><title>By: petrescs</title><link>http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/#comment-43076</link> <dc:creator>petrescs</dc:creator> <pubDate>Thu, 13 Aug 2009 13:35:51 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=4745#comment-43076</guid> <description>I think zenity (for Gnome) or kdialog (KDE) could be used to pop-up an info box, instead (or additionally) to sending an email.</description> <content:encoded><![CDATA[<p>I think zenity (for Gnome) or kdialog (KDE) could be used to pop-up an info box, instead (or additionally) to sending an email.</p> ]]></content:encoded> </item> </channel> </rss>
