diff --git a/COPYRIGHT.md b/COPYRIGHT.md new file mode 100644 index 00000000..9989bb28 --- /dev/null +++ b/COPYRIGHT.md @@ -0,0 +1,21 @@ +# Copyrights + +Copyright 2010 Melik Manukyan +Copyright 2010 David Vazgenovich Shakaryan + +## License + +This program IS A FORK of the original Archey project . + +Distributed under the terms of the GNU General Public License v3. +See for the full license text. + +## Contributors + +* ASCII art by Brett Bohnenkamper +* Changes Jerome Launay +* Fedora support by YeOK +* First IP handling by Normand Cyr +* First IPv6 support and Windows subsystems handling by Si13n7 + +Currently maintained by Samuel FORESTIER diff --git a/README.md b/README.md index df777b19..d340328a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Archey 4 +> Archey is a simple system information tool written in Python + ![archey4](https://horlogeskynet.github.io/img/blog/the-archey-project-what-i-ve-decided-to-do.png?v4.3.1) ## Why (again) a f*cking new Archey fork ? diff --git a/archey b/archey index b1ee7470..ba48dada 100755 --- a/archey +++ b/archey @@ -1,25 +1,4 @@ #!/usr/bin/env python3 -# -# archey4 -# -# -- Archey is a simple system information tool written in Python. -# -# Copyright 2010 Melik Manukyan -# Copyright 2010 David Vazgenovich Shakaryan -# -# ASCII art by Brett Bohnenkamper -# Changes Jerome Launay -# Fedora support by YeOK -# First IP handling by Normand Cyr -# First IPv6 support by Si13n7 -# -# Currently maintained by Samuel FORESTIER -# -# This program IS A FORK of -# the original Archey project -# -# Distributed under the terms of the GNU General Public License v3. -# See for the full license text. import json @@ -68,7 +47,8 @@ colorDict = { Distributions.OPENSUSE: ['\x1b[1;37m', '\x1b[1;32m'], Distributions.RED_HAT: ['\x1b[1;37m', '\x1b[1;31m', '\x1b[0;31m'], Distributions.UBUNTU: ['\x1b[0;31m', '\x1b[1;31m', '\x1b[0;33m'], - Distributions.WINDOWS: ['\x1b[1;31m', '\x1b[1;34m', '\x1b[1;32m', '\x1b[0;33m'], + Distributions.WINDOWS: ['\x1b[1;31m', '\x1b[1;34m', + '\x1b[1;32m', '\x1b[0;33m'], 'sensors': ['\x1b[0;32m', '\x1b[0;33m', '\x1b[0;31m'], 'clear': '\x1b[0m' }