summaryrefslogtreecommitdiff
path: root/pcr/paraboley/paraboley
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/paraboley/paraboley')
-rwxr-xr-xpcr/paraboley/paraboley8
1 files changed, 4 insertions, 4 deletions
diff --git a/pcr/paraboley/paraboley b/pcr/paraboley/paraboley
index 94d84c02f..122b3cbb0 100755
--- a/pcr/paraboley/paraboley
+++ b/pcr/paraboley/paraboley
@@ -14,6 +14,7 @@
# Along with basic system information.
# Import libraries
+
import collections
import subprocess, optparse, re, sys, configparser
from subprocess import Popen, PIPE
@@ -50,7 +51,7 @@ UNAME_FLAG_MEANINGS = {
'i': 'Hardware Platform',
}
-LOGOS = {'Arch Linux': '''{c1}
+LOGOS = {'Parabola': '''{c1}
{c1} ## ### {results[0]}
{c1} ## ## ##### {results[1]}
{c1} ## ## ## ####### {results[2]}
@@ -68,7 +69,7 @@ LOGOS = {'Arch Linux': '''{c1}
{c1} ### {results[14]}
{c1} ### {results[15]}
{c1} ## {results[16]}
-{c2} # {results[17]}
+{c1} # {results[17]}
\x1b[0m'''
}
@@ -428,7 +429,7 @@ class distroCheck(display):
except IOError:
distro = self.call_command("uname -o")
else:
- distro = "Arch Linux"
+ distro = "Parabola"
distro = '{0} {1}'.format(distro, self.call_command("uname -m"))
return "OS", distro
@@ -731,7 +732,6 @@ class Archey(object):
results = self.arrange_results(results)
return LOGOS[self.distro_name].format(c1=color(self.state, 1),
- c2=color(self.state, 2),
results = results
)