Skip to content

Commit

Permalink
Adds new RHEL-Logo while keeping the old as shadowman
Browse files Browse the repository at this point in the history
  • Loading branch information
helmchen authored and HorlogeSkynet committed Feb 19, 2024
1 parent 8817077 commit df61178
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ and this project (partially) adheres to [Semantic Versioning](https://semver.org
### Added
- Official EndeavourOS distribution support
- Display server protocol to `WindowManager`
- New Red Hat logo "The Hat"

### Changed
- Allow `df` output to contain Unicode characters
- Extend logos consistency test case to all logo styles
- `WindowManager` API value format: now an object with `name` and `display_server_protocol` attributes
- Old Red Hat logo is available as alternate logo `shadowman`

## [v4.14.2.0] - 2023-08-26
### Added
Expand Down
1 change: 1 addition & 0 deletions COPYRIGHT.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ See <https://www.gnu.org/licenses/gpl-3.0.txt> for the full license text.
* Elementary OS proper ASCII logo integration by @SomethingGeneric <mcompton2002@gmail.com>
* Pop!\_OS proper ASCII logo integration by @airvue
* Project logo by Brume <contact@brume.ink>
* Red Hat logo "The hat" by @helmchen

## Maintainers

Expand Down
32 changes: 31 additions & 1 deletion archey/logos/rhel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,39 @@

from archey.colors import Colors

COLORS = [Colors.RED_BRIGHT, Colors.WHITE_BRIGHT, Colors.RED_NORMAL]
COLORS = [Colors.RED_BRIGHT, Colors.WHITE_BRIGHT]

LOGO = [
"""{c[0]} .MM:..:MMMMMMM. """,
"""{c[0]} MMMMMMMMMMMMMMMMMM """,
"""{c[0]} MMMMMMMMMMMMMMMMMMMM. """,
"""{c[0]} MMMMMMMMMMMMMMMMMMMMMM """,
"""{c[0]} ,MMMMMMMMMMMMMMMMMMMMMM: """,
"""{c[0]} MMMMMMMMMMMMMMMMMMMMMMMM """,
"""{c[0]} .MMMM' MMMMMMMMMMMMMMMMMMMMMM """,
"""{c[0]} MMMMMM `MMMMMMMMMMMMMMMMMMMM. """,
"""{c[0]} MMMMMMMM MMMMMMMMMMMMMMMMMM . """,
"""{c[0]} MMMMMMMMM. `MMMMMMMMMMMMM' MM. """,
"""{c[0]} `MMMMMMMMMMMMM. `""` ,MMMMM. """,
"""{c[0]} `MMMMMMMMMMMMMMMMM:. .:MMMMMMMM. """,
"""{c[0]} MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM """,
"""{c[0]} MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM: """,
"""{c[0]} MMMMMMMMMMMMMMMMMMMMMMMMMMMMMM """,
"""{c[0]} `MMMMMMMMMMMMMMMMMMMMMMMM: """,
"""{c[0]} ``MMMMMMMMMMMMMMMMM' """,
"""{c[0]} `""` """,
"""{c[1]} R e d H a t """,
]

# Alias to the current logo "the hat"
COLORS_HAT = COLORS
LOGO_HAT = LOGO


# Alternative logo : "Shadowman" (tho old logo).
COLORS_SHADOWMAN = [Colors.RED_BRIGHT, Colors.WHITE_BRIGHT, Colors.RED_NORMAL]

LOGO_SHADOWMAN = [
"""{c[0]} {c[2]}\\`.-..........\\`{c[0]} """,
"""{c[0]} {c[2]}\\`////////::.\\`-/.{c[0]} """,
"""{c[0]} {c[2]}-: ....-////////.{c[0]} """,
Expand Down

0 comments on commit df61178

Please sign in to comment.