forked from deluan/zsh-in-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zsh-in-docker.sh
executable file
·187 lines (163 loc) · 5.29 KB
/
zsh-in-docker.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#!/bin/sh
#######################################################################################################
# MIT License (MIT)
# Copyright 2019 Deluan Quintao
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
# associated documentation files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge, publish, distribute,
# sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or
# substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
# NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
# OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#######################################################################################################
set -e
THEME=default
PLUGINS=""
ZSHRC_APPEND=""
INSTALL_DEPENDENCIES=true
while getopts ":t:p:a:x" opt; do
case ${opt} in
t) THEME=$OPTARG
;;
p) PLUGINS="${PLUGINS}$OPTARG "
;;
a) ZSHRC_APPEND="$ZSHRC_APPEND\n$OPTARG"
;;
x) INSTALL_DEPENDENCIES=false
;;
\?)
echo "Invalid option: $OPTARG" 1>&2
;;
:)
echo "Invalid option: $OPTARG requires an argument" 1>&2
;;
esac
done
shift $((OPTIND -1))
echo
echo "Installing Oh-My-Zsh with:"
echo " THEME = $THEME"
echo " PLUGINS = $PLUGINS"
echo
check_dist() {
(
. /etc/os-release
echo "$ID"
)
}
check_version() {
(
. /etc/os-release
echo "$VERSION_ID"
)
}
install_dependencies() {
DIST=$(check_dist)
VERSION=$(check_version)
echo "###### Installing dependencies for $DIST"
if [ "$(id -u)" = "0" ]; then
Sudo=''
elif which sudo; then
Sudo='sudo'
else
echo "WARNING: 'sudo' command not found. Skipping the installation of dependencies. "
echo "If this fails, you need to do one of these options:"
echo " 1) Install 'sudo' before calling this script"
echo "OR"
echo " 2) Install the required dependencies: git curl zsh"
return
fi
case $DIST in
alpine)
$Sudo apk add --update --no-cache git curl zsh
;;
amzn)
$Sudo yum update -y
$Sudo yum install -y git zsh
$Sudo yum install -y ncurses-compat-libs # this is required for AMZN Linux (ref: https://github.com/emqx/emqx/issues/2503)
;;
rhel|fedora|rocky)
$Sudo yum update -y
$Sudo yum install -y git zsh
;;
*)
$Sudo apt-get update
$Sudo apt-get -y install git curl zsh locales
if [ "$VERSION" != "14.04" ]; then
$Sudo apt-get -y install locales-all
fi
$Sudo locale-gen en_US.UTF-8
esac
}
zshrc_template() {
_HOME=$1;
_THEME=$2; shift; shift
_PLUGINS=$*;
if [ "$_THEME" = "default" ]; then
_THEME="powerlevel10k/powerlevel10k"
fi
cat <<EOM
export LANG='en_US.UTF-8'
export LANGUAGE='en_US:en'
export LC_ALL='en_US.UTF-8'
export TERM=xterm
##### Zsh/Oh-my-Zsh Configuration
export ZSH="$_HOME/.oh-my-zsh"
ZSH_THEME="${_THEME}"
plugins=($_PLUGINS)
EOM
printf "$ZSHRC_APPEND"
printf "\nsource \$ZSH/oh-my-zsh.sh\n"
}
powerline10k_config() {
cat <<EOM
POWERLEVEL9K_SHORTEN_STRATEGY="truncate_to_last"
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(user dir vcs status)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=()
POWERLEVEL9K_STATUS_OK=false
POWERLEVEL9K_STATUS_CROSS=true
EOM
}
if [ "$INSTALL_DEPENDENCIES" = true ]; then
install_dependencies
fi
cd /tmp
# Install On-My-Zsh
if [ ! -d "$HOME"/.oh-my-zsh ]; then
sh -c "$(curl https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" "" --unattended
fi
# Generate plugin list
plugin_list=""
for plugin in $PLUGINS; do
if [ "$(echo "$plugin" | grep -E '^http.*')" != "" ]; then
plugin_name=$(basename "$plugin")
git clone "$plugin" "$HOME"/.oh-my-zsh/custom/plugins/"$plugin_name"
else
plugin_name=$plugin
fi
plugin_list="${plugin_list}$plugin_name "
done
# Handle themes
if [ "$(echo "$THEME" | grep -E '^http.*')" != "" ]; then
theme_repo=$(basename "$THEME")
THEME_DIR="$HOME/.oh-my-zsh/custom/themes/$theme_repo"
git clone "$THEME" "$THEME_DIR"
theme_name=$(cd "$THEME_DIR"; ls *.zsh-theme | head -1)
theme_name="${theme_name%.zsh-theme}"
THEME="$theme_repo/$theme_name"
fi
# Generate .zshrc
zshrc_template "$HOME" "$THEME" "$plugin_list" > "$HOME"/.zshrc
# Install powerlevel10k if no other theme was specified
if [ "$THEME" = "default" ]; then
git clone --depth 1 https://github.com/romkatv/powerlevel10k "$HOME"/.oh-my-zsh/custom/themes/powerlevel10k
powerline10k_config >> "$HOME"/.zshrc
fi