2011-06-07 13:26:45 +00:00
|
|
|
#!/mod/bin/jimsh
|
|
|
|
|
2011-09-02 19:50:10 +00:00
|
|
|
source /mod/var/mongoose/lib/setup
|
|
|
|
require system.class
|
2011-06-07 13:26:45 +00:00
|
|
|
|
2011-09-02 19:50:10 +00:00
|
|
|
lassign [system diskspace] size used perc
|
2011-06-07 13:26:45 +00:00
|
|
|
set file [format "%02d" [expr {$perc * 25 / 100 + 1}]]
|
|
|
|
|
2011-07-07 22:33:19 +00:00
|
|
|
# The HD model only has the USB images which are blue. I prefer the green
|
|
|
|
# one so use those if available.
|
|
|
|
if {[file exists /opt/share/images/blue/345_2_14_ST_HDD_01.png]} {
|
|
|
|
set prefix 345_2_14_ST_HDD
|
|
|
|
} else {
|
|
|
|
set prefix 345_1_27_ST_USB
|
|
|
|
}
|
|
|
|
|
|
|
|
puts "
|
|
|
|
|
|
|
|
<span style=\"float: right;
|
|
|
|
background:url('/images/345_1_27_ST_USB_BG.png')
|
|
|
|
no-repeat\">
|
|
|
|
<img src=/images/${prefix}_$file.png>
|
|
|
|
</span>
|
2011-06-07 13:26:45 +00:00
|
|
|
|
2011-07-07 22:33:19 +00:00
|
|
|
<span style=\"float: right\">
|
|
|
|
<br>
|
|
|
|
Total space: $size<br>
|
|
|
|
Used: $used ($perc%)
|
|
|
|
</span>
|
|
|
|
"
|
2011-06-07 13:26:45 +00:00
|
|
|
|