-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
44 lines (31 loc) · 1001 Bytes
/
install.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
#!/usr/bin/env bash
# Remove the login information on shell startup
touch $HOME/.hushlogin
# Update packages and upgrade
sudo apt update
sudo apt upgrade
# Intsall ZSH
echo "Installing zsh, git & htop"
sudo apt install -y git zsh
# Install Oh My ZSH
echo 'Installing oh-my-zsh'
## Remove any existing config for oh-my-zsh
rm -rf $HOME/.oh-my-zsh
curl --location https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
# Remove global gitignore if script has already been ran
if test -f "$HOME/.global-gitignore"; then
rm -rf $HOME/.global-gitignore
fi
# Setup global gitignore
ln -s $HOME/.dotfiles/shell/.global-gitignore $HOME/.global-gitignore
git config --global core.excludesfiles $HOME/.global-gitignore
#Symlink zsh prefs
rm $HOME/.zshrc
ln -s $HOME/.dotfiles/shell/.zshrc $HOME/.zshrc
# Setup zlocation
cd ~/.dotfiles/shell
chmod +x z.sh
# Install wget
sudo apt install -y wget
# Install .NET 6
sudo apt install -y dotnet6 aspnetcore-runtime-6.0