-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall
executable file
·121 lines (110 loc) · 3.52 KB
/
install
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
#!/bin/bash
# Installer script for elsni's linux environment
# (w) 2023 by Stephan Elsner
get_abs_filename() {
# $1 : relative filename
echo "$(cd "$(dirname "$1")" && pwd)/$(basename "$1")"
}
create_safelink() {
if [[ -L "$HOME/$1" ]]; then # check if dir is a symlink
rm "$HOME/$1"
else
# no, rename old dir
mv "$HOME/$1" "$HOME/$1_old" 2> /dev/null
fi
## create a link to the config
ln -s $(get_abs_filename "$2") "$HOME/$1"
}
install_dotfiles() {
mkdir -p "${HOME}/.config"
cd home/.config
for d in */; do
dir=${d::-1} # remove ending slash
create_safelink ".config/$dir" "$dir"
done
cd ..
create_safelink ".bashrc" ".bashrc"
create_safelink ".Xresources" ".Xresources"
create_safelink ".Xdefaults" ".Xdefaults"
}
install_fira_font() {
fonts_dir="${HOME}/.local/share/fonts"
if [ ! -d "${fonts_dir}" ]; then
mkdir -p "${fonts_dir}"
fi
echo "downloading Fira code..."
version=5.2
zip=Fira_Code_v${version}.zip
curl --fail --location --show-error https://github.com/tonsky/FiraCode/releases/download/${version}/${zip} --output ${zip}
unzip -o -q -d ${fonts_dir} ${zip}
rm ${zip}
echo "rebuilding font cache..."
fc-cache -f
}
install_eza() {
sudo apt install -y gpg wget
sudo mkdir -p /etc/apt/keyrings
if [ ! -f "/etc/apt/keyrings/gierens.gpg" ]; then
wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | sudo gpg --dearmor -o /etc/apt/keyrings/gierens.gpg
echo "deb [signed-by=/etc/apt/keyrings/gierens.gpg] http://deb.gierens.de stable main" | sudo tee /etc/apt/sources.list.d/gierens.list
sudo chmod 644 /etc/apt/keyrings/gierens.gpg /etc/apt/sources.list.d/gierens.list
fi
sudo apt update
sudo apt install -y eza
}
install_lolcat() {
olddir=`pwd`
mkdir -p "${HOME}/source"
cd "${HOME}/source"
git clone https://github.com/jaseg/lolcat.git
cd lolcat
make && sudo make install
cd ..
#rm -rf lolcat
cd $olddir
}
# ---------------------- main ------------------------------------------
case "$1" in
"")
echo "Install Elsni's linux environment for debian based systems"
echo "usage: install <OPTION>"
echo "where OPTION can be:"
echo "-c install dotfiles and dependencies for a console-only system (server)"
echo "-g install dependencies and dotfiles for a desktop (gui) system"
echo "-a install both, console and desktop stuff."
echo "-d install dotfiles only, don't install any dependencies"
echo
echo "IMPORTANT: -c -g -a only works on systems with apt package manager"
echo "like debian, ubuntu, mint, bunsenlabs, dietpi ..."
exit 0;;
"-c")
echo "installing console stuff..."
sudo apt install build-essential neofetch toilet mc nano micro -y
install_eza
install_lolcat
install_dotfiles
exit 0;;
"-g")
echo "installing desktop stuff..."
sudo apt install herbstluftwm polybar xterm xwallpaper fonts-noto fonts-noto-color-emoji fonts-font-awesome ssh-askpass rofi lxappearance -y
sudo apt install alacritty -y
install_fira_font
install_dotfiles
exit 0;;
"-a")
echo "installing everything..."
sudo apt install build-essential xterm xwallpaper neofetch toilet mc nano micro herbstluftwm polybar fonts-noto fonts-noto-color-emoji fonts-font-awesome ssh-askpass rofi lxappearance -y
sudo apt install alacritty -y
install_fira_font
install_eza
install_lolcat
install_dotfiles
exit 0;;
"-d")
echo "installing dotfiles only..."
install_dotfiles
exit 0;;
*)
echo "wrong parameter"
exit 1;;
esac