This repository was archived by the owner on Feb 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·82 lines (72 loc) · 1.6 KB
/
install.sh
File metadata and controls
executable file
·82 lines (72 loc) · 1.6 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
#! /bin/bash
function show {
echo -e $1
}
function install {
sudo pacman -S $1 --noconfirm
}
function fetch {
git clone $1
}
function fetch_r {
git clone --recursive $1
}
function add_archfr {
sudo echo "[archlinuxfr]" >> /etc/pacman.conf
sudo echo "SigLevel = Never" >> /etc/pacman.conf
sudo echo "Server = http://repo.archlinux.fr/\$arch" >> /etc/pacman.conf
pacman -Sy
}
show "========== Installing =========="
show "Installing graphics stuff"
show "\tXorg server"
install xorg-server
install xorg-xinit
install xorg-server-utils
install mesa
show "\tDrivers"
install xf86-video-intel
install libva-intel-driver
install xf86-input-synaptics
show "\tAwesome"
install awesome
mkdir -p ~/.config/awesome/
fetch_r https://github.com/lcpz/awesome-copycats.git
cd awesome-copycats
#rm -rf lain freedesktop
#fetch "https://github.com/lcpz/awesome-freedesktop.git freedesktop"
#fetch https://github.com/lcpz/lain.git
cd ..
mv -bv awesome-copycats/* ~/.config/awesome
rm -rf awesome-copycats
show "Installing useful stuff"
install xterm
install networkmanager
install network-manager-applet
install jdk9-openjdk
install vim
install maven
install google-chrome
install jetbrains-toolbox
install atom
install docker
install docker-compose
add_archfr
install yaourt
install mirage
install feh
install nemo
install gitkraken
install gnome-mplayer
install go
install gparted
install htop
install pavucontrol
install redshift
install unzip
install wireshark-qt
install wget
install i3lock
install zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
show "-> Install spotify by hand"