-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.sh
52 lines (37 loc) · 799 Bytes
/
setup.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
#!/bin/bash
echo "Do not run. ctrl-c"
read -n 1
## xorg
cp xorg/* $HOME/
## i3
mkdir .i3/
cp i3/* $HOME/.i3/
## zsh
# zshrc
cp zsh/.zshrc $HOME/
# oh-my-zsh
# Not using -p to actually output an error if the dir doesn't exist
mkdir $HOME/.oh-my-zsh
cp zsh/oh-my-zsh/* $HOME/.oh-my-zsh
## Git
cp git/.git* $HOME
## Tmux
cp tmux/.tmux.conf $HOME
# Tmuxinator
mkdir -p $HOME/.tmuxinator/
cp tmux/tmuxinator/* $HOME/.tmuxinator/
## vim
cp vim/.vimrc $HOME
## Symlinking
# Desktop files
ln -s $HOME/lib/desktop-files/* /usr/share/applications/
## Source folder
mkdir -p $HOME/src
# Go folders
mkdir -p $HOME/src/golang/src
mkdir -p $HOME/src/golang/pkg
mkdir -p $HOME/src/golang/bin
## Pictures
mkdir -p Pictures/wallpapers
# For feh background
ln -s favourite_wallpaper.png background.png