-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·89 lines (74 loc) · 2.24 KB
/
setup.sh
File metadata and controls
executable file
·89 lines (74 loc) · 2.24 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
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
#!/bin/sh
# Packages
echo '##### INSTALLING PACKAGES...'
sudo apt install -y \
autoconf \
autoconf \
automake \
build-essential \
compton \
feh \
git \
i3lock \
i3status \
libev-dev \
libev-dev \
libpango1.0-dev \
libsnack2-dev \
libstartup-notification0-dev \
libxcb-cursor-dev \
libxcb-icccm4-dev \
libxcb-keysyms1-dev \
libxcb-randr0-dev \
libxcb-shape0-dev \
libxcb-util0-dev \
libxcb-xinerama0-dev \
libxcb-xkb-dev \
libxcb-xrm-dev \
libxcb-xrm0 \
libxcb1-dev \
libxkbcommon-dev \
libxkbcommon-x11-dev \
libyajl-dev \
neovim \
rofi \
tmux
# Neovim plugin manager
echo '##### INSTALLING NEOVIM PLUGIN MANAGER...'
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
# GTK theme files
echo '##### INSTALLING GTK THEMES...'
mkdir -p ~/.themes \
~/.icons
unzip .icons/NordArc-Icons-1.0.zip -d ~/.icons
unzip .themes/NordArc-Theme-1.0.zip -d ~/.themes
# Gnome terminal theme
echo '##### NORD THEME FOR GNOME-TERMINAL...'
./nord.sh
# Config files
echo '##### COPYING CONFIGURATION FILES...'
mkdir -p ~/.config/i3/ \
~/.config/i3status/ \
~/.config/rofi \
~/.config/nvim \
~/.config/gtk-3.0
cp .config/gtk-3.0/settings.ini ~/.config/gtk-3.0/settings.ini
cp .config/nvim/init.vim ~/.config/nvim/init.vim
cp .config/i3/config ~/.config/i3/config
cp .config/i3status/config ~/.config/i3status/config
cp .config/rofi/config ~/.config/rofi/config
cp .tmux.conf .compton.conf .bashrc ~/
# i3gaps
echo '##### INSTALLING i3gaps...'
git clone https://www.github.com/Airblader/i3 ~/Documents/i3-gaps \
&& cd ~/Documents/i3-gaps
autoreconf --force --install
rm -rf build/ && mkdir -p build && cd build/
../configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers
make -j8 && sudo make install
# st
echo '##### INSTALLING SIMPLE TERMINAL...'
cd ~/Documents
git clone https://github.com/pypaut/st.git && cd st
make && sudo make clean install