mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
feat: normalize verticality (#12991)
This commit is contained in:
@@ -4,10 +4,6 @@
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
function flipAsciiArt(art: string): string {
|
||||
return art.split('\n').reverse().join('\n');
|
||||
}
|
||||
|
||||
export const shortAsciiLogo = `
|
||||
█████████ ██████████ ██████ ██████ █████ ██████ █████ █████
|
||||
███░░░░░███░░███░░░░░█░░██████ ██████ ░░███ ░░██████ ░░███ ░░███
|
||||
@@ -41,7 +37,7 @@ export const tinyAsciiLogo = `
|
||||
░░░ ░░░░░░░░░
|
||||
`;
|
||||
|
||||
const rawShortAsciiLogoIde = `
|
||||
export const shortAsciiLogoIde = `
|
||||
░░░░░░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░
|
||||
░░░ ░░░ ░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░░░ ░░░
|
||||
░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░
|
||||
@@ -54,9 +50,7 @@ const rawShortAsciiLogoIde = `
|
||||
█████████ ██████████ ███ ███ █████ ███ █████ █████
|
||||
`;
|
||||
|
||||
export const shortAsciiLogoIde = flipAsciiArt(rawShortAsciiLogoIde);
|
||||
|
||||
const rawLongAsciiLogoIde = `
|
||||
export const longAsciiLogoIde = `
|
||||
░░░ ░░░░░░░░░ ░░░░░░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░
|
||||
░░░ ░░░ ░░░ ░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░░ ░░░░░ ░░░
|
||||
░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░ ░░░
|
||||
@@ -69,9 +63,7 @@ const rawLongAsciiLogoIde = `
|
||||
███ █████████ ██████████ ███ ███ █████ ███ █████ █████
|
||||
`;
|
||||
|
||||
export const longAsciiLogoIde = flipAsciiArt(rawLongAsciiLogoIde);
|
||||
|
||||
const rawTinyAsciiLogoIde = `
|
||||
export const tinyAsciiLogoIde = `
|
||||
░░░ ░░░░░░░░░
|
||||
░░░ ░░░ ░░░
|
||||
░░░ ░░░
|
||||
@@ -83,5 +75,3 @@ const rawTinyAsciiLogoIde = `
|
||||
███ ███ ███
|
||||
███ █████████
|
||||
`;
|
||||
|
||||
export const tinyAsciiLogoIde = flipAsciiArt(rawTinyAsciiLogoIde);
|
||||
|
||||
Reference in New Issue
Block a user