-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall-server.sh
More file actions
executable file
·40 lines (33 loc) · 1.28 KB
/
install-server.sh
File metadata and controls
executable file
·40 lines (33 loc) · 1.28 KB
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
#!/bin/bash
set -e
echo -e "\e[31m###########################\e[0m"
echo -e "\e[31minstalling packages\e[0m"
echo -e "\e[31m###########################\e[0m"
./packages/packages.sh
echo -e "\e[31m###########################\e[0m"
echo -e "\e[31minstalling ohmyzsh\e[0m"
echo -e "\e[33mEnter password to set default shell\e[0m"
echo -e "\e[31m###########################\e[0m"
./shell/zsh/ohmyzsh.sh
echo -e "\e[31m###########################\e[0m"
echo -e "\e[31minstalling pure\e[0m"
echo -e "\e[31m###########################\e[0m"
./shell/zsh/pure-install.sh
echo -e "\e[31m###########################\e[0m"
echo -e "\e[31minstalling zsh plugins\e[0m"
echo -e "\e[31m###########################\e[0m"
./shell/zsh/zsh-plugins-install.sh
echo -e "\e[31m###########################\e[0m"
echo -e "\e[31madding .zshrc and .gitconfig\e[0m"
echo -e "\e[31m###########################\e[0m"
./copy-config.sh
echo -e "\e[31m###########################\e[0m"
echo -e "\e[31mAdding utils\e[0m"
echo -e "\e[31m###########################\e[0m"
./copy-utils.sh
echo -e "\e[31m###########################\e[0m"
echo -e "\e[31mAdding oh my tmux\e[0m"
echo -e "\e[31m###########################\e[0m"
./shell/tmux.sh
echo -e "\e[32mFinished! 🚀🚀\e[0m"
echo -e "Restart your terminal to make changes take effect."