HAL - hiding local HDD partitions

I'm using XFCE not GNOME, however the problem is quite common and concerns HAL. By default XFCE displays icons for other detected partitions (in the sense of fdisk) on user's desktop. I'd like those icon not to appear (although I like to have such icons for removable media). Under Linux I used to hide those with a trick:

Code:
$ cat /etc/udev/rules.d/99-hide-partitions.rules
KERNEL=="sda1", ENV{UDISKS_IGNORE}:="1"
KERNEL=="sda3", ENV{UDISKS_IGNORE}:="1"
KERNEL=="sda4", ENV{UDISKS_IGNORE}:="1"

For FreeBSD I found (http://www.freebsd.org/gnome/docs/halfaq.html#q2) some suggestions to do it by HAL configurations. However the suggestions seems to be rather enigmatic and I failed. May I ask for some help with it?
 
Back
Top