diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-10 10:39:37 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-10 10:39:37 -0400 |
commit | 5d829ccfcc8e051397a0fe6d273f7cda258198db (patch) | |
tree | e26297e43db9674b130a84fe2d9d0b7ad2a8269f | |
parent | bccabccc78802cf22c5af31e5a5b45ca307346da (diff) | |
parent | 1c7e1378c4c92fe3f4df5d21e7fc04104cd4933d (diff) |
Merge branch 'master' into paraboley
# Conflicts:
# paraboley
-rwxr-xr-x | paraboley | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3,7 +3,7 @@ # Paraboley is a forked made by Aurélien DESBIRÈRES <aurelien@hackers.camp> # of archey3 to present the Parabola GNU / Linux-libre logo and informations # -# paraboley [version 0.2] +# paraboley # # Distributed under the terms of the GNU General Public License v3. # See http://www.gnu.org/licenses/gpl.txt for the full license text. @@ -11,6 +11,8 @@ # Simple python script to display an Parabola logo in ASCII art # Along with basic system information. +__version__ = "0.3" + # Import libraries import collections @@ -85,6 +87,7 @@ def module_register(name): DE_DICT = collections.OrderedDict([ ('cinnamon', 'Cinnamon'), ('gnome-session', 'GNOME'), + ('gnome-shell', 'GNOME'), ('ksmserver', 'KDE'), ('mate-session', 'MATE'), ('xfce4-session', 'Xfce'), @@ -102,6 +105,7 @@ WM_DICT = collections.OrderedDict([ ('fvwm', 'FVWM'), ('herbstluftwm', 'herbstluftwm'), ('i3', 'i3'), + ('sway', 'sway'), ('icewm', 'IceWM'), (re.compile('kwin(_x11|_wayland)?'), 'KWin'), ('metacity', 'Metacity'), @@ -824,7 +828,7 @@ def main(): usage='%prog', description="""%prog is a utility to display system info and take\ screenshots""", - version="%prog 0.3") + version="%prog {version}".format(version=__version__)) parser.add_option('-c', '--color', action='store', type='choice', dest='color', choices=('black', |