This repository has been archived by the owner on Apr 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
template
77 lines (69 loc) · 4.17 KB
/
template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env bash
###############################################
# Write a nice business card on the terminal. #
###############################################
# Bitly = https://raw.githubusercontent.com/tallguyjenks/BusinessCard/master/business_card
# ╭───────────────────────────────────────────────────────╮
# │ │
# │ Michael Tsouchlarakis / michaeltd │
# │ │
# │ Work: [email protected] │
# │ FOSS: Gentoo Linux avocado. │
# │ │
# │ Twitter: https://twitter.com/tsouchlarakismd │
# │ npm: https://npmjs.com/~michaeltd │
# │ GitHub: https://github.com/michaeltd │
# │ LinkedIn: https://linkedin.com/in/michaeltd │
# │ Web: https://michaeltd.netlify.com/ │
# │ │
# │ Card: curl -sL https://tinyurl.com/mtd-card|sh │
# │ │
# ╰───────────────────────────────────────────────────────╯
######################################
# Font attributes, colors, bg colors #
######################################
#bg_black="$(tput setab 0)"
#bg_blue="$(tput setab 4)"
#bg_cyan="$(tput setab 6)"
#bg_default="$(tput setab 9)"
#bg_green="$(tput setab 2)"
#bg_magenta="$(tput setab 5)"
#bg_red="$(tput setab 1)"
#bg_white="$(tput setab 7)"
#bg_yellow="$(tput setab 3)"
#black="$(tput setaf 0)"
#blink="$(tput blink)"
#default="$(tput setaf 9)"
#end_underline="$(tput rmul)"
#hidden="$(tput invis)"
#reverse="$(tput rev)"
#white="$(tput setaf 7)"
blue="$(tput setaf 4)"
bold="$(tput bold)"
cyan="$(tput setaf 6)"
dim="$(tput dim)"
green="$(tput setaf 2)"
magenta="$(tput setaf 5)"
red="$(tput setaf 1)"
reset="$(tput sgr0)"
underline="$(tput smul)"
yellow="$(tput setaf 3)"
cat <<EOF
${cyan}╭───────────────────────────────────────────────────────╮
${cyan}│ │
${cyan}│${reset} ${bold}${cyan}Bryan Jenks / TallGuyJenks${reset} ${cyan}│
${cyan}│ │
${cyan}│${reset} ${underline}${bold}Email:${reset} ${magenta}[email protected] ${cyan}│
${cyan}│${reset} ${underline}${bold}Web:${reset} ${dim}https://www.${reset}${cyan}bryanjenks.xyz ${cyan}|
${cyan}│ │
${cyan}│${reset} ${underline}${bold}Twitter:${reset} ${dim}https://twitter.com/${reset}${blue}Tall_Viking ${cyan}│
${cyan}│${reset} ${underline}${bold}GitHub:${reset} ${dim}https://github.com/${reset}${green}tallguyjenks ${cyan}│
${cyan}│${reset} ${underline}${bold}LinkedIn:${reset} ${dim}https://linkedin.com/in/${reset}${blue}bryanjenks ${cyan}│
${cyan}│${reset} ${underline}${bold}YouTube:${reset} ${dim}https://www.youtube.com/c/${reset}${red}BryanJenksTech ${cyan}│
${cyan}│${reset} ${underline}${bold}OrchID:${reset} ${dim}https://orcid.org/${reset}${green}0000-0002-9604-3069 ${cyan}│
${cyan}│${reset} ${underline}${bold}Patreon:${reset} ${dim}https://www.patreon.com/${reset}${yellow}bryanjenks ${cyan}│
${cyan}│ │
${cyan}│${reset} ${underline}${bold}Card:${reset} ${yellow}curl -sL bit.ly/2zvxUbd | sh ${cyan}│
${cyan}│ │
${cyan}╰───────────────────────────────────────────────────────╯
EOF