!7 cmodule FreeDiskSpaceTrayIcon > DynBigNumber { switchable bool inGigabytes = true; start { setDescription("FREE DISK"); dm_addTrayIcon(onLeftClick(rThread dm_showModule, lbl = dm_fieldLabel_noAutoToolTip('value))); componentPopupMenuItems(lbl, "Show Module", rThread dm_showModule, "Remove", rThread dm_deleteModule); doEveryAndNow(5000, r actualUpdate); } void actualUpdate { //time "FDS" { // 0-1 ms setValue(str_toGBorMB(inGigabytes, freeDiskSpace())); //} } }