Adium

Profile: outoforderorder

Comment Count 6 comments
0 xtras

Latest comments

# by outoforderorder on 01/14/09 at 00:28:10

better:
if totalHD ≥ 1024 then
set totalHD to totalHD / 1024
set usedHD to usedHD / 1024
set totalHD to round_truncate(totalHD, 2)
set usedHD to round_truncate(usedHD, 2)
set HDstring to HDname & ": " & usedHD & "/" & totalHD & " TB (" & HDpercent & "%) " & HDBar as string
else
set HDstring to HDname & ": " & usedHD & "/" & totalHD & " GB (" & HDpercent & "%) " & HDBar as string
end if

# by outoforderorder on 01/14/09 at 00:04:55

and towards the bottom where you put the HD size:

if totalHD ≥ 1024 then
set totalHD to totalHD / 1024
set totalHD to round_truncate(totalHD, 2)
set HDstring to HDname & ": " & usedHD & "/" & totalHD & " TB (" & HDpercent & "%) " & HDBar as string
else
set HDstring to HDname & ": " & usedHD & "/" & totalHD & " GB (" & HDpercent & "%) " & HDBar as string
end if

# by outoforderorder on 01/13/09 at 23:55:57

one other change:
line 20:

set memtotal to do shell script "sysctl -n hw.memsize"

# by outoforderorder on 01/13/09 at 23:37:38

Line 64 in 'thebenning.scpt' typecasts what can be a very large number to an int I have over 10gigs of ram, so switching it to cast the value as a number fixed it for me.

# by outoforderorder on 12/31/08 at 14:27:11

Damn. Got really excited hoping this might work on my MacPro but still nothing..
If there was source maybe I could help make this compatible with the Xeons too?