mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-20 20:46:30 +00:00
12 lines
374 B
Bash
12 lines
374 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
|
|
|
|
echo "'nerd-font' is an alias for 'nerdfont'"
|
|
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
|
|
curl -fsSL "$WEBI_HOST/nerdfont@${WEBI_VERSION:-}" | bash
|