Commit 36177724 authored by Franco Fichtner's avatar Franco Fichtner

widgets: add tmpfs to system disk usage section; #243

parent 5f1c347f
...@@ -211,7 +211,7 @@ function get_temp() { ...@@ -211,7 +211,7 @@ function get_temp() {
function get_mounted_filesystems() { function get_mounted_filesystems() {
$mout = ""; $mout = "";
$filesystems = array(); $filesystems = array();
exec("/bin/df -Tht ufs,zfs,cd9660 | /usr/bin/awk '{print $1, $2, $3, $4, $6, $7;}'", $mout); exec("/bin/df -Tht ufs,tmpfs,zfs,cd9660 | /usr/bin/awk '{print $1, $2, $3, $4, $6, $7;}'", $mout);
/* Get rid of the header */ /* Get rid of the header */
array_shift($mout); array_shift($mout);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment