summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurie Clark-Michalek <bluepeppers@archlinux.us>2010-11-07 14:13:21 +0000
committerLaurie Clark-Michalek <bluepeppers@archlinux.us>2010-11-07 14:13:21 +0000
commita453cc15a61eb458936db09fbb353c3fa4c2ee87 (patch)
tree22e2e71f59842c8275e0e4b48dcbeecf601f3bc1
parentb034f7a944836f15b41adeded3d9290f79d51a8f (diff)
Fixed minor bug that was causing reverse FS coloring
-rwxr-xr-xarchey32
1 files changed, 1 insertions, 1 deletions
diff --git a/archey3 b/archey3
index 9fb48ab..c81d282 100755
--- a/archey3
+++ b/archey3
@@ -220,7 +220,7 @@ class ramDisplay(display):
total = int(ram[1])
title = 'RAM'
try:
- persentage = 100 - (used / total * 100)
+ persentage = (used / total * 100)
except:
used += ' MB'
else: