Compare commits
3 Commits
8dd27b7d36
..
v1.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 07aad4b651 | |||
| 69f97442a3 | |||
| 0b07013eeb |
@@ -334,28 +334,26 @@ std::vector<string> distroArt() {
|
|||||||
"ubuntu",
|
"ubuntu",
|
||||||
Color::Orange,
|
Color::Orange,
|
||||||
{
|
{
|
||||||
"------ |\\ ", // TODO:
|
" _ ",
|
||||||
" | | \\ ",
|
" ,--(_) ",
|
||||||
" | | / ",
|
" _/ ;-._\\ ",
|
||||||
" | |/ ",
|
"(_)( ) )",
|
||||||
" ",
|
" \\ ;-'_/ ",
|
||||||
" ",
|
" `--(_) "
|
||||||
" ",
|
|
||||||
" "
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fedora",
|
"fedora",
|
||||||
Color::Blue,
|
Color::Blue,
|
||||||
{
|
{
|
||||||
"------ |\\ ", // TODO:
|
" _____ ",
|
||||||
" | | \\ ",
|
" / __)\\ ",
|
||||||
" | | / ",
|
" | / \\ \\",
|
||||||
" | |/ ",
|
" ___| |__/ /",
|
||||||
" ",
|
" / (_ _)_/ ",
|
||||||
" ",
|
"/ / | | ",
|
||||||
" ",
|
"\\ \\__/ | ",
|
||||||
" "
|
" \\(_____/ ",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -388,7 +386,7 @@ std::vector<string> distroArt() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"pop",
|
"pop",
|
||||||
Color::Purple,
|
Color::Cyan,
|
||||||
{
|
{
|
||||||
"______ ",
|
"______ ",
|
||||||
"\\ _ \\ __",
|
"\\ _ \\ __",
|
||||||
@@ -428,7 +426,7 @@ std::vector<string> distroArt() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"void",
|
"void",
|
||||||
Color::Gray,
|
Color::Green,
|
||||||
{
|
{
|
||||||
" ____ ",
|
" ____ ",
|
||||||
" 'pfPfp.% ",
|
" 'pfPfp.% ",
|
||||||
@@ -453,12 +451,9 @@ std::vector<string> distroArt() {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
// Ubuntu: Orange (+ Light/Deep Orange)
|
|
||||||
// Fedora: Blue + Gray/White
|
|
||||||
|
|
||||||
std::vector<string> out;
|
std::vector<string> out;
|
||||||
for (const auto& logo : logos) {
|
for (const auto& logo : logos) {
|
||||||
if (logo.id == "alpine") {
|
if (logo.id == distroID) {
|
||||||
const string prefix = color(logo.color);
|
const string prefix = color(logo.color);
|
||||||
const string suffix = color(Color::Reset);
|
const string suffix = color(Color::Reset);
|
||||||
for (const auto& line : logo.art) {
|
for (const auto& line : logo.art) {
|
||||||
|
|||||||
Reference in New Issue
Block a user