-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogo.sh
executable file
·48 lines (48 loc) · 3.85 KB
/
logo.sh
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
#!/bin/sh
# neovim logo by @sunjon https://github.com/nvimdev/dashboard-nvim/wiki/Ascii-Header-Text
# color variation and script by @xero https://git.io/.files
case "$1" in
-b)
cat <<x0
███████████ █████ ██
███████████ █████
████████████████ ███████████ ███ ███████
████████████████ ████████████ █████ ██████████████
██████████████ █████████████ █████ █████ ████ █████
██████████████████████████████████ █████ █████ ████ █████
██████ ███ █████████████████ ████ █████ █████ ████ ██████
x0
;;
-c)
cat <<x0
[49m [38;2;167;201;171m
[38;2;31;107;152m███████████ [38;2;57;108;63m█████[38;2;167;201;171m ██
[38;2;34;115;163m███████████ [38;2;61;116;68m█████
[38;2;36;122;174m███████[49m██[38;2;20;69;110m[38;2;122;187;225m███████ ███[38;2;65;124;72m████████ [38;2;152;192;157m███ ███████
[38;2;38;130;184m█████████[38;2;132;191;226m███████[49m ████[38;2;69;132;76m████████ [38;2;160;196;164m█████ ██████████████
[38;2;40;138;195m█████████[38;2;142;196;228m█████[49m[38;2;20;69;110m██[38;2;142;196;228m██████[38;2;73;140;81m███████ [38;2;167;201;171m█████ █████ ████ █████
[38;2;43;145;206m███████████[38;2;151;200;229m█████████████████[38;2;77;147;86m██████ [38;2;175;205;179m█████ █████ ████ █████
[38;2;45;153;217m██████ ███ [38;2;160;204;231m█████████████████ [38;2;81;155;90m████ [38;2;183;209;186m█████ █████ ████ ██████
[38;2;20;69;110m██████ ██ ███████████████ [38;2;46;78;42m██ █████████████████
x0
;;
*)
cat <<x0
nvim-logo: display cool text mode art banners in your shell/editor
usage: ./logo.sh [-c|-b|-h]
flags:
-c display in color
-b display in black and white
-h display this message
requirements:
this design uses non-standard characters from NerdFonts (v3)
please view in a patched font https://www.nerdfonts.com/
credits:
neovim logo by @sunjon https://github.com/nvimdev/dashboard-nvim/wiki/Ascii-Header-Text
color variations and script by @xero https://git.io/.files
additional background transparency fixes by @thuvasooriya
x0
;;
esac
exit 0