summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorAurélien DESBRIÈRES <aurelien@hackers.camp>2014-06-13 16:23:32 +0200
committerAurélien DESBRIÈRES <aurelien@hackers.camp>2014-06-13 16:23:32 +0200
commit05477046ce09b63e1b2d280d03d39ea9f2ce03ff (patch)
tree73d1b2be3a3c5f5d34c890d7791e755d2bcbee29 /pcr
parentc9379f3c41d7bdfba7703ae2a519cc584cd5fa73 (diff)
downloadabslibre-05477046ce09b63e1b2d280d03d39ea9f2ce03ff.tar.gz
abslibre-05477046ce09b63e1b2d280d03d39ea9f2ce03ff.tar.bz2
abslibre-05477046ce09b63e1b2d280d03d39ea9f2ce03ff.zip
paraboley / archey3 rebranded
Diffstat (limited to 'pcr')
-rw-r--r--pcr/paraboley/PKGBUILD4
-rwxr-xr-xpcr/paraboley/paraboley8
2 files changed, 6 insertions, 6 deletions
diff --git a/pcr/paraboley/PKGBUILD b/pcr/paraboley/PKGBUILD
index b7b722a03..0767b86ca 100644
--- a/pcr/paraboley/PKGBUILD
+++ b/pcr/paraboley/PKGBUILD
@@ -2,10 +2,10 @@
pkgname=paraboley
pkgver=0.1
-pkgrel=2
+pkgrel=1
pkgdesc="Python script to display system infomation alongside the Parabola GNU / Linux-libre logo."
arch=('any')
-url="https://github.com/XL04D/paraboley"
+url="http://XL04D.github.com/paraboley"
license=('GPL')
depends=('python')
makedepends=('git' 'python-distribute')
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
)