blob: 4498e774117f7cc652149d93bdf252b2c646c732 (
plain)
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
|
sudo apt -y update
sudo apt -y upgrade
sudo apt -y install zsh
sudo apt -y install cowsay
sudo apt -y install fortune
sudo apt -y install htop
sudo apt -y install python
sudo apt -y install python-pip
sudo apt -y install python3
sudo apt -y install python3-pip
sudo apt -y install git
sudo apt -y install playonlinux
sudo apt -y install emacs-nox
sudo apt -y install vim
sudo apt -y install nano
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git clone --bare https://bitbucket.org/durdn/cfg.git $HOME/.cfg
function config {
/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@
}
mkdir -p .config-backup
config checkout
if [ $? = 0 ]; then
echo "Please fix git errors"
read -p "Press enter to continue"
fi;
config checkout
config config status.showUntrackedFiles no
sudo apt -y install terminator
sudo apt -y install texlive
sudo apt -y install texlive-lang-european
sudo apt -y install conky
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
sudo apt update
sudo apt -y install spotify-client
sudo apt -y install virtualbox
|