mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 09:50:19 +00:00
16 lines
454 B
Bash
16 lines
454 B
Bash
#!/bin/bash
|
|
# title: nerd-font (nerdfont alias)
|
|
# homepage: https://webinstall.dev/nerdfont
|
|
# tagline: Alias for https://webinstall.dev/nerdfont
|
|
# alias: nerdfont
|
|
# description: |
|
|
# See https://webinstall.dev/nerdfont
|
|
|
|
function __redirect_alias_nerdfont() {
|
|
echo "'nerd-font' is an alias for 'nerdfont'"
|
|
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
|
|
curl -fsSL "$WEBI_HOST/nerdfont@${WEBI_VERSION:-}" | bash
|
|
}
|
|
|
|
__redirect_alias_nerdfont
|