-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbunsenLabs-lithium-setup.sh
197 lines (138 loc) · 5.13 KB
/
bunsenLabs-lithium-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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#!/bin/bash
set -euo pipefail
#############################################################################
##
## Let's start by making ourselves comfortable
##
#############################################################################
echo disable touchpad
## disable touchpad at startup + create enable script
echo '' >> ~/.config/bunsen/autostart
echo '## disable touchpad' >> ~/.config/bunsen/autostart
echo "xinput disable" $(xinput list | grep Touchpad | awk '{print $6}' | cut -c4,5) " &" >> ~/.config/bunsen/autostart
echo "xinput enable" $(xinput list | grep Touchpad | awk '{print $6}' | cut -c4,5) > ~/bin/enable-touchpad
chmod +x ~/bin/enable-touchpad
## disable in current session
xinput disable $(xinput list | grep Touchpad | awk '{print $6}' | cut -c4,5)
## Configure keyboard layout
read -p "Follow steps to configure the keyboard Y/y" dummy
sudo dpkg-reconfigure keyboard-configuration
## tweak graphics
#sudo apt purge xserver-xorg-video-intel
## activate redshift at boot
echo '' >> ~/.config/bunsen/autostart
echo '(sleep 3; redshift-be) &' >> ~/.config/bunsen/autostart
## set urxvt as default terminal
# sudo update-alternatives --set x-terminal-emulator /usr/bin/urxvt
#############################################################################
##
## Copy custom config files
##
## a bit like https://github.com/BunsenLabs/bunsen-configs
##
#############################################################################
echo config
bkp_sfx="~$( date +%FT%T )~"
rsync -rlb --checksum --suffix="$bkp_sfx" --safe-links skel/ "$HOME"
#############################################################################
##
## lowercase names for directories
##
#############################################################################
mv ~/Documents ~/documents
mv ~/Downloads ~/downloads
mv ~/Music ~/music
mv ~/Pictures ~/pictures
mv ~/Public ~/public
mv ~/Templates ~/templates
mv ~/Videos ~/videos
xdg-user-dirs-update
#############################################################################
##
## Configure fonts
##
#############################################################################
echo fonts
## fonts
sudo apt install fonts-liberation2
## Set a nicer default monospace font
sed -i 's/Noto Mono/Dejavu Sans Mono/g' ~/.config/fontconfig/fonts.conf
## remove heavy unused font
sudo apt remove fonts-noto-cjk
#############################################################################
##
## Thinkpad-only stuff
##
#############################################################################
echo thinkpad stuff
## Install tlp
## tp_smapi is not supported on my machine, install acpi_call module instead
sudo apt install tlp acpi-call-dkms
#############################################################################
##
## Install extra software
##
#############################################################################
echo extra software
sudo mkdir /opt/c-user
sudo chown c-user:c-user /opt/c-user
## xbacklight
#sudo apt install xbacklight
## graphics software
sudo apt install inkscape gimp cheese
## audio software
sudo apt install audacity
## chromium
sudo apt install chromium
## office
sudo apt install gnumeric libreoffice-impress
## image optimization
sudo apt install optipng libjpeg-turbo-progs
## For some reason, programmatic download retrieves windows .zip instead of the linux 64 bits version.
#cd /opt/c-user
#wget -O firefox.tar.bz2 https://download.mozilla.org/?product=firefox-latest-ssl&os=linux64&lang=en-US && tar -zxvf firefox.tar.bz2
#wget -O firefox-dev.tar.bz2 https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US & tar -zxvf firefox-dev.tar.bz2
## ffmpeg
## unattended-upgrades
sudo apt-get install unattended-upgrades apt-listchanges
## screen color manager
sudo apt install redshift
## utilities
sudo apt install awscli baobab pdftk
## virtual machine
## install kvm / qemu
sudo apt install --no-install-recommends qemu-kvm qemu-utils libvirt-daemon bridge-utils libvirt-daemon-system virt-manager dnsmasq virt-viewer libvirt-daemon-system gir1.2-spiceclientglib-2.0 dmidecode libxml2-utils
## prevent sudo password prompt during startup of virt-manager
sudo usermod -a -G libvirt $(whoami)
## set default location of VMs under /home
sudo mkdir /home/kvm-vms
sudo rmdir /var/lib/libvirt/images/
sudo ln -s /home/kvm-vms/ /var/lib/libvirt/images
#############################################################################
##
## Install development software
##
#############################################################################
echo dev software
## dependencies
sudo apt install g++
## redis 5.x
sudo apt install redis
## java
sudo apt install openjdk-11-jdk
## gephi
cd /opt/c-user/
wget https://github.com/gephi/gephi/releases/download/v0.9.2/gephi-0.9.2-linux.tar.gz
tar -zxvf gephi-0.9.2-linux.tar.gz
ln -s /opt/c-user/gephi-0.9.2/bin/gephi ~/bin/
cd
## configure git to cache credentials
git config --global credential.helper cache
#############################################################################
##
## Cleanup
##
#############################################################################
echo cleanup
## delete apt cache
sudo apt clean