Generic Monitor XFce4 panel plugin (GenMon) =========================================== 1 - Description ----------- The GenMon plugin cyclically spawns the indicated script/program, captures its output and displays the result into the panel. 2 - Installation ------------ Do the usual stuff: - gunzip - tar xf - ./configure --prefix= (e.g. /usr/local) - make - make install (as root) You should then end up with: xfce4-genmon-plugin installed in /libexec/xfce4/panel-plugins/ and genmon.desktop installed in /share/xfce4/panel-plugins/ xfce4-genmon-plugin.mo installed in /share/locale/XX/LC_MESSAGES/ where XX represents the languages supported by genmon plugin 3 - Testing ------- Use GenMon for invoking the provided "datetime" shell script. Then the current date/time should be continuously updated in your panel. 4 - Extra ----- A simple Perl script, disktemp, that retrieves the temperature of a disk using the smartmontools is provided. To install it, as root you may do: - cp disktemp /usr/local/bin - cd /usr/local/bin - chown root:root disktemp - chmod a+rx disktemp - chmod u+s disktemp Then run (you need to have smartd/smarctl installed on your system) - disktemp (e.g. /dev/hda) If this works, you should be able to use GenMon for continually monitoring your disk temperature. 5 - New Features ----------- The new version of genmon plugin can also display an icon (which can be a clickable icon), a tooltip, a text and a bar. To display these items, the script called by genmon should return a simple XML string. The XML tags which can be used are : Text to display Path to the image to display Tooltip text Pourcentage to display in the bar The command to be executed when clicking on the image If None of the tags are detected in the result of the command, the plugin returns to its original behaviour (displaying the result of the command). No tag is mandatory: for instance, you can display a tooltip without and image... Here's a simple example of a plugin displaying the Temp of the CPU in the panel (with an icon) and the Freq in a Tooltip: #!/bin/bash echo "/usr/share/icons/Bluecurve/16x16/apps/gnome-monitor.png" declare -i cpuFreq cpuFreq=$(cat /proc/cpuinfo | grep "cpu MHz" | sed 's/\ \ */ /g' | cut -f3 -d" " | cut -f1 -d".") if [ $cpuFreq -ge 1000 ] then cpu=$(echo $cpuFreq | cut -c1).$(echo $cpuFreq | cut -c2)GHz else cpu=${cpuFreq}MHz fi echo ""$(cat /proc/acpi/thermal_zone/THM/temperature | sed 's/\ \ */ /g' | cut -f2 -d" ")" C" echo "Freq: "$cpu"" PS: Depending on your configuration, you should change the image path. You can find more scripts in scripts/mon*. 6 - Bugs ---- If you find a bug, fix it, then tell me how you did it :-) Enjoy! Roger Seguin roger_seguin@msn.com Julien Devemy