Merge _configs/ into config/ for single configuration directory. Update all path references. Changes: - Move _configs/* to config/ - Update .gitignore for new patterns - No code references to _configs/ found Impact: -1 root directory (layout_conventions.md compliance)
22 lines
1.1 KiB
Plaintext
22 lines
1.1 KiB
Plaintext
def show_vapora_logo [] {
|
|
print " VAPORA "
|
|
}
|
|
def show_syntaxis_logo [difusion = true] {
|
|
print "╔═════════════════════════════════╗ "
|
|
print $"║ (ansi blue) ┏━┓ ╻ ╻ ┏┓╻ ╺┳╸ ┏━┓ ╻ ╻ ╻ ┏━┓ (ansi reset) ║ "
|
|
print $"║ (ansi blue) ┗━┓ ┗┳┛ ┃┗┫ ┃ ┣━┫ ┏╋┛ ┃ ┗━┓ (ansi reset) ║ "
|
|
print $"║ (ansi blue) ┗━┛ ╹ ╹ ╹ ╹ ╹ ╹ ╹ ╹ ╹ ┗━┛ (ansi reset) ║ "
|
|
if $difusion {
|
|
print $"║ (ansi green) ▲ (ansi yellow) Systematic Orchestration (ansi reset) ║ "
|
|
print $"║ (ansi green) ■ (ansi yellow) Perfectly Arranged (ansi reset) ║ "
|
|
print $"║ > (ansi b)('https://syntaxis.dev' | ansi link --text 'syntaxis.dev')(ansi reset) ║ "
|
|
}
|
|
print "╚═════════════════════════════════╝ "
|
|
}
|
|
def show_logo [] {
|
|
match ($env | get -o RUN_NAME) {
|
|
"vapora" => show_vapora_logo
|
|
_ => show_syntaxis_logo
|
|
}
|
|
}
|