diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-08-17 21:47:39 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-08-17 21:47:39 +0200 |
commit | 613045e7e565a9069568e7f94574701c3d440489 (patch) | |
tree | 36bd63e62c082eb46f380719ebac55ed6029eacf /tools/install.sh | |
parent | 079e7bb5e0a79171f3356d55d3f6302a82645a39 (diff) | |
download | zsh-613045e7e565a9069568e7f94574701c3d440489.tar.gz zsh-613045e7e565a9069568e7f94574701c3d440489.tar.bz2 zsh-613045e7e565a9069568e7f94574701c3d440489.zip |
Underline links in install and update script
Diffstat (limited to 'tools/install.sh')
-rwxr-xr-x | tools/install.sh | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/tools/install.sh b/tools/install.sh index 8a93708ca..0fc554786 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -53,6 +53,10 @@ error() { echo ${RED}"Error: $@"${RESET} >&2 } +underline() { + echo "$(printf '\033[4m')$@$(printf '\033[24m')" +} + setup_color() { # Only use colors if connected to a terminal if [ -t 1 ]; then @@ -269,11 +273,13 @@ main() { /____/ ....is now installed! + EOF + cat <<-EOF Before you scream Oh My Zsh! please look over the ~/.zshrc file to select plugins, themes, and options. - • Follow us on Twitter: https://twitter.com/ohmyzsh - • Join our Discord server: https://discord.gg/ohmyzsh - • Get stickers, shirts, coffee mugs and other swag: https://shop.planetargon.com/collections/oh-my-zsh + • Follow us on Twitter: $(underline https://twitter.com/ohmyzsh) + • Join our Discord server: $(underline https://discord.gg/ohmyzsh) + • Get stickers, shirts, coffee mugs and other swag: $(underline https://shop.planetargon.com/collections/oh-my-zsh) EOF printf "$RESET" |