syntaxis/scripts/syntaxis-lib.nu
Jesús Pérez 9cef9b8d57 refactor: consolidate configuration directories
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)
2025-12-26 18:36:23 +00:00

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
}
}